Task #74170 - python-logdetective-2.2.1-1.20251001181653269108.main.2.gc083fff/scan-results.err

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

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

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

Error: PROSPECTOR_WARNING:
/usr/lib/python3.14/site-packages/logdetective/utils.py:246:17: W1514[pylint]: Using open without explicitly specifying an encoding
#  244|       if path:
#  245|           try:
#  246|->             with open(path, "r") as file:
#  247|                   return SkipSnippets(yaml.safe_load(file))
#  248|           except OSError as e: