mirror of
https://github.com/munin-monitoring/contrib.git
synced 2025-07-21 18:41:03 +00:00
Remove global flake8 override
This commit is contained in:
parent
10ca12569a
commit
852aa41ab7
2 changed files with 1 additions and 5 deletions
|
@ -64,7 +64,7 @@ def reqjson():
|
|||
try:
|
||||
raw_data = urllib.request.urlopen(url)
|
||||
return json.loads(raw_data)
|
||||
except IOError as e:
|
||||
except IOError:
|
||||
print("Cannot reach the GitLab API endpoint.", file=sys.stderr)
|
||||
exit(1)
|
||||
|
||||
|
@ -105,5 +105,3 @@ if len(sys.argv) >= 2:
|
|||
fetch()
|
||||
else:
|
||||
fetch()
|
||||
|
||||
# flake8: noqa: E265
|
||||
|
|
|
@ -185,5 +185,3 @@ elif len(sys.argv) == 2 and sys.argv[1] == "config":
|
|||
configure()
|
||||
else:
|
||||
fetch()
|
||||
|
||||
# flake8: noqa: E265
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue