Browse Source

Automatic formatting commit: 2020-09-23T12:15:18.627732

Getty Ritter 3 years ago
parent
commit
731e2e3d79
1 changed files with 2 additions and 3 deletions
  1. 2 3
      tasks.py

+ 2 - 3
tasks.py

@@ -77,12 +77,11 @@ def tc(c):
         "MYPYPATH=$(pwd)/stubs poetry run mypy --check-untyped-defs lc/*.py tests/*.py scripts/*.py"
     )
 
+
 @task
 def lint(c):
     """Typecheck with mypy"""
-    c.run(
-        "poetry run flake8"
-    )
+    c.run("poetry run flake8")
 
 
 @task