Skip to content

Commit 2143eee

Browse files
committed
lint: Fix lint error
1 parent ca65259 commit 2143eee

2 files changed

Lines changed: 2 additions & 5 deletions

File tree

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,3 @@ cython_debug/
173173

174174
# PyPI configuration file
175175
.pypirc
176-
177-
# Honeycomb config
178-
honeycomb.toml

src/bot/ui/embeds/embeds_manager.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,5 +165,5 @@ async def send_embed(
165165

166166
try:
167167
await ctx_or_interaction.response.send_message(**kwargs)
168-
except Exception as e:
169-
return await ctx_or_interaction.followup.send(**kwargs)
168+
except Exception:
169+
return await ctx_or_interaction.followup.send(**kwargs)

0 commit comments

Comments
 (0)