diff options
| author | Shyam Sunder | 2020-06-05 10:02:18 -0400 |
|---|---|---|
| committer | Shyam Sunder | 2020-06-05 10:02:18 -0400 |
| commit | ea623449e7c29801ab0a0ade043308937cca7506 (patch) | |
| tree | 889147f8bec12ef170bd31fb9a61403e66d542f8 /server/szurubooru/func/posts.py | |
| parent | c5358f7f83ef49f51d5ba557dde1b16ce2c83d1d (diff) | |
server: format code to flake8
Diffstat (limited to 'server/szurubooru/func/posts.py')
| -rw-r--r-- | server/szurubooru/func/posts.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/szurubooru/func/posts.py b/server/szurubooru/func/posts.py index d8e984b..e18656a 100644 --- a/server/szurubooru/func/posts.py +++ b/server/szurubooru/func/posts.py @@ -529,7 +529,7 @@ def update_all_post_signatures() -> None: .filter( (model.Post.type == model.Post.TYPE_IMAGE) | (model.Post.type == model.Post.TYPE_ANIMATION)) - .filter(model.Post.signature == None) + .filter(model.Post.signature == None) # noqa: E711 .order_by(model.Post.post_id.asc()) .all()) for post in posts_to_hash: |