Skip to content

Commit

Permalink
fixed linter
Browse files Browse the repository at this point in the history
  • Loading branch information
warreprovoost committed Feb 25, 2024
1 parent 3006e43 commit 69c95ad
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/project/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@
)

app = create_app_with_db(url)
app.run(debug=True)
app.run(debug=True)
7 changes: 6 additions & 1 deletion backend/pylintrc
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
[MASTER]
init-hook='import sys; sys.path.append(".")'

[MESSAGES CONTROL]
disable=W0621, C0415


[test-files:*_test.py]
disable=
W0621, # Redefining name %r from outer scope (line %s)

[modules:project/modules/*]
disable=
R0903 # Too few public methods (modules don't require us to have public methods)
R0903, # Too few public methods (modules don't require us to have public methods)
C0415 # Import outside toplevel

0 comments on commit 69c95ad

Please sign in to comment.