Getty Ritter 5 лет назад
Родитель
Сommit
fde685f863
1 измененных файлов с 1 добавлено и 0 удалено
  1. 1 0
      tasks.py

+ 1 - 0
tasks.py

@@ -25,6 +25,7 @@ def install(c):
 
 @task
 def fmt(c):
+    """Automatically format the source code, committing it if it is safe to do so."""
     status = c.run("git status --porcelain", hide="stdout")
     is_clean = status.stdout.strip() == ""
     c.run("poetry run black $(find . -name '*.py')")