diff options
| author | Shyam Sunder | 2020-06-03 11:55:50 -0400 |
|---|---|---|
| committer | Shyam Sunder | 2020-06-03 11:55:50 -0400 |
| commit | b0f1b8c2309277a7b170972d463b4e8d16a79ecc (patch) | |
| tree | 564f6f7dd1a2d78f3a00bb4372fb4ca2b95bb6c5 /server/szurubooru/tests/conftest.py | |
| parent | 1be947e9462edf3bb0a8d15172e0c6e0190e0482 (diff) | |
fix python lint issues
Diffstat (limited to 'server/szurubooru/tests/conftest.py')
| -rw-r--r-- | server/szurubooru/tests/conftest.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/szurubooru/tests/conftest.py b/server/szurubooru/tests/conftest.py index 249df1a..13b1c00 100644 --- a/server/szurubooru/tests/conftest.py +++ b/server/szurubooru/tests/conftest.py @@ -214,7 +214,8 @@ def pool_category_factory(): @pytest.fixture def pool_factory(): - def factory(id=None, names=None, description=None, category=None, time=None): + def factory( + id=None, names=None, description=None, category=None, time=None): if not category: category = model.PoolCategory(get_unique_name()) db.session.add(category) |