Pārlūkot izejas kodu

Add docstring to fmt command

Getty Ritter 5 gadi atpakaļ
vecāks
revīzija
fde685f863
1 mainītis faili ar 1 papildinājumiem un 0 dzēšanām
  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')")