From 8b78057806e96208ce0a50030b1f8d31d3829467 Mon Sep 17 00:00:00 2001 From: Konsta Vesterinen Date: Thu, 20 Oct 2016 10:14:05 +0300 Subject: [PATCH] Fix styling --- tests/test_auto_delete_orphans.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/test_auto_delete_orphans.py b/tests/test_auto_delete_orphans.py index fc7fd8d..3a92b9f 100644 --- a/tests/test_auto_delete_orphans.py +++ b/tests/test_auto_delete_orphans.py @@ -37,8 +37,10 @@ def Tag(Base): return Tag -@pytest.fixture(params=['entries', backref('entries', lazy='select')], - ids=['backref_string', 'backref_with_keywords']) +@pytest.fixture( + params=['entries', backref('entries', lazy='select')], + ids=['backref_string', 'backref_with_keywords'] +) def Entry(Base, Tag, tagging_tbl, request): class Entry(Base): __tablename__ = 'entry'