Skip to content

Commit 989b6bd

Browse files
committed
Fixed lint errors.
1 parent efd1c6a commit 989b6bd

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

github_deploy/main.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ def list_commands(self, ctx):
99
rv = []
1010
for filename in os.listdir(plugin_folder):
1111
if (
12-
filename.endswith(".py")
13-
and not filename.startswith("__init__")
14-
and not filename.startswith("_")
12+
filename.endswith(".py")
13+
and not filename.startswith("__init__")
14+
and not filename.startswith("_")
1515
):
1616
rv.append(filename[:-3])
1717
rv.sort()
@@ -31,7 +31,9 @@ def get_command(self, ctx, name):
3131

3232

3333
main = GithubDeploy(
34-
help="Deploy changes to multiple github repositories using a single command.",
34+
help=(
35+
"Deploy changes to multiple github repositories using a single command."
36+
),
3537
)
3638

3739
if __name__ == "__main__":

0 commit comments

Comments
 (0)