Skip to content

Commit 9b4858d

Browse files
author
Shehab Abdel-Salam
committed
fix lint
1 parent afe5152 commit 9b4858d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

chapters/chapter09_error_handling/exercises/exercise_67.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ def process_strings(strings: list[str]):
1414
# Operation 2: Access First Character
1515
print(f"First character of '{string}' is '{string[0]}'")
1616

17-
except ValueError as e:
17+
except ValueError:
1818
print("TODO: Cannot convert to integer")
1919

20-
except IndexError as e:
20+
except IndexError:
2121
print("TODO: Cannot access first character")
2222

2323
if exceptions:

0 commit comments

Comments
 (0)