What to do: Line 129 of git_parser.py has a bare except: (no exception type specified). This silently swallows all errors including KeyboardInterrupt and SystemExit. Replace it with except Exception:.
Files: git_parser.py (line 129)
- Change
except: → except Exception:
Why beginner-friendly: Literally a 1-word change. Great intro to Python best practices and contributing to open source. Good for someone making their very first PR ever.
What to do: Line 129 of
git_parser.pyhas a bareexcept:(no exception type specified). This silently swallows all errors includingKeyboardInterruptandSystemExit. Replace it withexcept Exception:.Files: git_parser.py (line 129)
except:→except Exception:Why beginner-friendly: Literally a 1-word change. Great intro to Python best practices and contributing to open source. Good for someone making their very first PR ever.