diff options
| author | rr- <rr-@sakuya.pl> | 2016-10-22 14:43:52 +0200 |
|---|---|---|
| committer | rr- <rr-@sakuya.pl> | 2016-10-22 14:43:52 +0200 |
| commit | 995cd4610dd5472bf6d9a5faf6559b7c8043783c (patch) | |
| tree | 0be98b17a51ee60dc0d841f3ba50dbf68da11109 /server/szurubooru/search/executor.py | |
| parent | f1445b9c24b286a9f74a2fead655ab5c169bc74b (diff) | |
server: drop old style class declarations
Diffstat (limited to 'server/szurubooru/search/executor.py')
| -rw-r--r-- | server/szurubooru/search/executor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/szurubooru/search/executor.py b/server/szurubooru/search/executor.py index 39b1d56..e1ee53a 100644 --- a/server/szurubooru/search/executor.py +++ b/server/szurubooru/search/executor.py @@ -20,7 +20,7 @@ def _get_order(order, default_order): return order -class Executor(object): +class Executor: ''' Class for search parsing and execution. Handles plaintext parsing and delegates sqlalchemy filter decoration to SearchConfig instances. |