Преглед на файлове

Add docstring to fmt command

Getty Ritter преди 5 години
родител
ревизия
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')")