diff options
author | Matthew Lemon <y@yulqen.org> | 2024-09-10 20:45:25 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-09-10 20:45:25 +0100 |
commit | aae0cf1636b64744ff037fb19cbc2f01dbbf9e23 (patch) | |
tree | 198588114f115cdcddba5707cf2dacba684f6269 /pyblackbird_cc/resources/views.py | |
parent | 8d8457d1e9b6d93847198c52b16b55c94070280e (diff) |
Removes extranneous e
Diffstat (limited to 'pyblackbird_cc/resources/views.py')
-rw-r--r-- | pyblackbird_cc/resources/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyblackbird_cc/resources/views.py b/pyblackbird_cc/resources/views.py index 4a61988..e95c676 100644 --- a/pyblackbird_cc/resources/views.py +++ b/pyblackbird_cc/resources/views.py @@ -114,7 +114,7 @@ def _extract_metadata_from_resource(resource_obj) -> ResourceInfo | None: created=resource_obj.created_at, updated=resource_obj.updated_at, ) - except Exception as e: + except Exception: logging.exception("Error extracting resource information: ") return None |