Skip to content

Commit

Permalink
Pylint Error
Browse files Browse the repository at this point in the history
  • Loading branch information
Allber Fellype committed Dec 11, 2024
1 parent cad40fc commit 204fbfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion desafio-11/JamesStewart-314/python/solution.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def print_biggest_seq(file_path: str, upper_limit: int = 10 ** 4) -> str:
pi_digits: str = open(file_path, "r").readline().rstrip()
except FileNotFoundError as error:
raise Exception(f"Error: Could open file \'{file_path}\'.") from error

try:
pi_digits: str = pi_digits[pi_digits.index('.') + 1:]
except ValueError:
Expand Down

0 comments on commit 204fbfc

Please sign in to comment.