Task #58751 - python-logdetective-1.1.0-1.20250604103825801996.pr291.6.gc74723b/scan-results.err

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