Fix: replace bare except:pass with specific exception handling - #127
Closed
Ekaanksh-dev wants to merge 1 commit into
Closed
Fix: replace bare except:pass with specific exception handling#127Ekaanksh-dev wants to merge 1 commit into
Ekaanksh-dev wants to merge 1 commit into
Conversation
|
INFO: No unicode characters found in PR's commits (source) |
Member
|
Thanks for the PR :) Please note that this repo does not accept contributions that use AI Can you please tell us if you wrote this code, comments, and PR contents entirely by yourself? Or if you used AI for any part of it? |
Author
|
Hi @maltfield, thanks for reviewing!
I used Claude (AI) to help me understand the codebase and
identify the locations that needed fixing. The actual changes
were made by me following the guidance.
I understand if this doesn't meet your contribution policy.
I'll close this PR if needed. Thanks for being transparent
about your requirements!
…On Mon, 8 Jun 2026, 02:19 Michael Altfield, ***@***.***> wrote:
*maltfield* left a comment (BusKill/buskill-app#127)
<#127 (comment)>
Thanks for the PR :)
Please note that this repo does not accept contributions that use AI
<https://github.com/BusKill/buskill-app/blob/dev/CONTRIBUTING.md#ai-policy>
Can you please tell us if you wrote this code, comments, and PR contents
entirely by yourself? Or if you used AI for any part of it?
—
Reply to this email directly, view it on GitHub
<#127?email_source=notifications&email_token=CAZP7IYLYGL2R7IGP3JVXUL46XIODA5CNFSNUABFM5UWIORPF5TWS5BNNB2WEL2JONZXKZKDN5WW2ZLOOQXTINRUGQYDKOJQGAYKM4TFMFZW63VGMF2XI2DPOKSWK5TFNZ2KYZTPN52GK4S7MNWGSY3L#issuecomment-4644059000>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/CAZP7I2RMWQ6BRCGVPA4APT46XIODAVCNFSM6AAAAACZ47GQROVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHM2DMNBUGA2TSMBQGA>
.
Triage notifications, keep track of coding agent tasks and review pull
requests on the go with GitHub Mobile for iOS
<https://github.com/notifications/mobile/ios/CAZP7I7L7EYHC2U23ZSXE6D46XIODA5CNFSNUABFM5UWIORPF5TWS5BNNB2WEL2JONZXKZKDN5WW2ZLOOQXTINRUGQYDKOJQGAYKM4TFMFZW63VGMF2XI2DPOKSWK5TFNZ2KUZTPN52GK4S7NFXXG>
and Android
<https://github.com/notifications/mobile/android/CAZP7I2EOTVLQ4ZHMOEIHY346XIODA5CNFSNUABFM5UWIORPF5TWS5BNNB2WEL2JONZXKZKDN5WW2ZLOOQXTINRUGQYDKOJQGAYKM4TFMFZW63VGMF2XI2DPOKSWK5TFNZ2K4ZTPN52GK4S7MFXGI4TPNFSA>.
Download it today!
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #115
Replaced 8 bare
except: passclauses in buskill/init.pywith specific
except Exception as eand proper logging.Changes: