Conversation
Code ReviewI found 4 critical syntax errors in this PR that will prevent the module from importing: Issue: Invalid Python 3 exception syntax (4 occurrences)File: Lines: 2006, 2573, 2729, 2742 Problem: The PR changes the exception handling syntax from In Python 3, you must use parentheses to catch multiple exception types:
The comma syntax without parentheses was Python 2 syntax for binding the exception to a variable (equivalent to Impact: The module will fail to import, crashing the calendar service at startup. Locations:
Fix: Restore the parentheses around the exception tuples at all 4 locations. The other changes in this PR ( |
|
@claude change excepts pls |
|
Claude finished @hubert-marek's task in 1m 17s —— View job Fixed Exception Syntax Errors ✓Todo List:
SummaryFixed all 4 Python 3 exception syntax errors in
The module will now import correctly without syntax errors. Branch: fixes-kdd |
Add missing parentheses around exception tuples for Python 3 compatibility. Fixed 4 occurrences at lines 2006, 2573, 2729, and 2742. Co-authored-by: Hubert <hubert-marek@users.noreply.github.com>
No description provided.