Skip to content

Commit 8c660cd

Browse files
committed
fix:linting
1 parent 9a03e8b commit 8c660cd

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

server/tests/test_signup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ def test_app():
1919
app = FastAPI()
2020
logger = logging.getLogger("test_logger")
2121
mock_preferences = MockPreferences()
22-
signup = Signup(api=app, logger=logger, preferences_logic=mock_preferences) # noqa: F841
22+
signup = Signup( # noqa: F841
23+
api=app, logger=logger, preferences_logic=mock_preferences)
2324
return TestClient(app)
2425

2526

0 commit comments

Comments
 (0)