Removed exception variable assignment into get_feed()

Removed variable assignment because variable is unused.
This commit is contained in:
Adhoniran Gomes 2023-10-03 14:41:01 -03:00
parent d42a428d66
commit 845c43185c

View File

@ -318,7 +318,7 @@ class RSSFeedWidget(DashboardWidget):
timeout=3
)
response.raise_for_status()
except requests.exceptions.RequestException as e:
except requests.exceptions.RequestException:
feed_error = 'NetBox is unable to connect to feed server...'
return {
'error': feed_error,