1
0
Fork 0
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:
Lars Kruse 2020-08-19 22:47:03 +02:00
parent 10ca12569a
commit 852aa41ab7
2 changed files with 1 additions and 5 deletions

View file

@ -64,7 +64,7 @@ def reqjson():
try: try:
raw_data = urllib.request.urlopen(url) raw_data = urllib.request.urlopen(url)
return json.loads(raw_data) return json.loads(raw_data)
except IOError as e: except IOError:
print("Cannot reach the GitLab API endpoint.", file=sys.stderr) print("Cannot reach the GitLab API endpoint.", file=sys.stderr)
exit(1) exit(1)
@ -105,5 +105,3 @@ if len(sys.argv) >= 2:
fetch() fetch()
else: else:
fetch() fetch()
# flake8: noqa: E265

View file

@ -185,5 +185,3 @@ elif len(sys.argv) == 2 and sys.argv[1] == "config":
configure() configure()
else: else:
fetch() fetch()
# flake8: noqa: E265