Task #58752 - python-logdetective-1.1.0-1.20250603123225208272.main.1.g9f8d1ec/scan-results.err

back to task #58752
download
Error: PROSPECTOR_WARNING:
/usr/lib/python3.13/site-packages/logdetective/server/config.py:14:17: W1514[pylint]: Using open without explicitly specifying an encoding
#   12|       if path is not None:
#   13|           try:
#   14|->             with open(path, "r") as config_file:
#   15|                   return Config(yaml.safe_load(config_file))
#   16|           except FileNotFoundError:

Error: PROSPECTOR_WARNING:
/usr/lib/python3.13/site-packages/logdetective/utils.py:151:13: W1514[pylint]: Using open without explicitly specifying an encoding
#  149|               raise ValueError(f"Local log {log_path} doesn't exist!")
#  150|   
#  151|->         with open(log_path, "rt") as f:
#  152|               log = f.read()
#  153|   

Error: PROSPECTOR_WARNING:
/usr/lib/python3.13/site-packages/logdetective/utils.py:193:17: W1514[pylint]: Using open without explicitly specifying an encoding
#  191|       if path:
#  192|           try:
#  193|->             with open(path, "r") as file:
#  194|                   return PromptConfig(yaml.safe_load(file))
#  195|           except FileNotFoundError: