Files
hugo-page/scripts/nc-cal-sync/calendar_synchronizer/debug.py
2025-01-17 10:52:49 +01:00

11 lines
194 B
Python

_listening = False
def debugger():
global _listening
if not _listening:
import debugpy
debugpy.listen(5678)
debugpy.wait_for_client()
_listening = True