Bump dependencies

This commit is contained in:
f4lco
2024-11-17 10:41:13 +01:00
parent 576cbf3910
commit cec402bffd
2 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -467,4 +467,4 @@ known-third-party=enchant
# Exceptions that will emit a warning when being caught. Defaults to
# "Exception"
overgeneral-exceptions=Exception
overgeneral-exceptions=builtins.Exception
+1 -2
View File
@@ -39,6 +39,5 @@ def test_retrieval(canteen):
try:
with app.app_context(), app.test_request_context():
canteen_xml_feed(canteen.key)
except json.JSONDecodeError as e:
except json.JSONDecodeError:
pytest.xfail('JSON endpoint returned garbage (issue #6)')
raise e # Appease PyCharm inspection - xfail always raises