Peter Nash

Results 2 comments of Peter Nash

ramses_cc 0.31.x also reports this as a warning: ` 2024-01-21 10:27:54.238 WARNING (MainThread) [ramses_rf.dispatcher] W --- 22:012299 01:216136 --:------ 22C9 006 01076C09F601 < PacketInvalid( W --- 22:012299 01:216136 --:------ 22C9...

This also seems to fix the problem without having to ignore the Context Manager exception. ``` @contextmanager def suppress_insecure_request_warning(): import warnings with warnings.catch_warnings(): warnings.simplefilter('ignore', urllib3.exceptions.InsecureRequestWarning) yield ```