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