ソースを参照

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

Getty Ritter 4 年 前
コミット
731e2e3d79
1 ファイル変更2 行追加3 行削除
  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