Browse Source

Add docstring to fmt command

Getty Ritter 4 years ago
parent
commit
fde685f863
1 changed files with 1 additions and 0 deletions
  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')")