Task #78940 - python-logdetective-2.5.0-1.20251029141748120265.main.1.g1404b45/scan-results.err
back to task #78940download
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:161:13: W1514[pylint]: Using open without explicitly specifying an encoding
#  159|               raise ValueError(f"Local log {log_path} doesn't exist!")
#  160|   
#  161|->         with open(log_path, "rt") as f:
#  162|               log = f.read()
#  163|   
Error: PROSPECTOR_WARNING:
/usr/lib/python3.14/site-packages/logdetective/utils.py:203:17: W1514[pylint]: Using open without explicitly specifying an encoding
#  201|       if path:
#  202|           try:
#  203|->             with open(path, "r") as file:
#  204|                   return PromptConfig(yaml.safe_load(file))
#  205|           except FileNotFoundError:
Error: PROSPECTOR_WARNING:
/usr/lib/python3.14/site-packages/logdetective/utils.py:253:17: W1514[pylint]: Using open without explicitly specifying an encoding
#  251|       if path:
#  252|           try:
#  253|->             with open(path, "r") as file:
#  254|                   return SkipSnippets(yaml.safe_load(file))
#  255|           except OSError as e: