Task #96691 - python-logdetective-3.2.0-1.20260203081650634593.main.0.gfc1bbb7/scan-results.err

back to task #96691
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.model_validate(yaml.safe_load(config_file))
#   19|           except FileNotFoundError:

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

Error: PROSPECTOR_WARNING:
/usr/lib/python3.14/site-packages/logdetective/utils.py:216:17: W1514[pylint]: Using open without explicitly specifying an encoding
#  214|       if config_path:
#  215|           try:
#  216|->             with open(config_path, "r") as file:
#  217|                   configuration = PromptConfig(**yaml.safe_load(file))
#  218|           except FileNotFoundError:

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