]> granicus.if.org Git - graphviz/commitdiff
squash Pylint warning in deploy script smattr/F16DEFA3-B7E0-4DC8-BDD5-C4D2C9D8242F
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Tue, 29 Jun 2021 02:41:49 +0000 (19:41 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Mon, 5 Jul 2021 04:26:47 +0000 (21:26 -0700)
With this tweak, deploy.py is Pylint-warning-free. I do not think it makes sense
to write docstrings on a main function.

ci/deploy.py

index 71ccad0d0746bbfea68d68970042130d146b2cf7..e526be1bfa224a61bf06f3d861757a1c9ee03ffa 100644 (file)
@@ -90,7 +90,7 @@ def is_windows_artifact(path: Path) -> bool:
   """is this a deployment artifact for Windows?"""
   return re.search(r"\bwindows\b", str(path)) is not None
 
-def main(args: List[str]) -> int:
+def main(args: List[str]) -> int: # pylint: disable=missing-function-docstring
 
   # setup logging to print to stderr
   global log