Skip to content
Snippets Groups Projects
Commit a06cf0ed authored by Bo-Chun Chen's avatar Bo-Chun Chen
Browse files

Fix pylint consider-using-sys-exit

parent 9135c0ea
No related branches found
No related tags found
1 merge request!131WIP: Fix linting
...@@ -9,7 +9,7 @@ import rabbit_config as rcfg ...@@ -9,7 +9,7 @@ import rabbit_config as rcfg
if len(sys.argv) < 3: if len(sys.argv) < 3:
sys.stderr.write(f"Usage: {sys.argv[0]} TAG USERNAME ") sys.stderr.write(f"Usage: {sys.argv[0]} TAG USERNAME ")
exit(1) sys.exit(1)
node = sys.argv[1] node = sys.argv[1]
user_name = sys.argv[2] user_name = sys.argv[2]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment