There was an error while loading. Please reload this page.
1 parent bad7f62 commit 70513c0Copy full SHA for 70513c0
1 file changed
mongoose/core/watchdogs.py
@@ -17,6 +17,7 @@
17
class DropInConfigurationWatcher:
18
def __init__(self, configuration_dir: Path, event_handler: FileSystemEventHandler):
19
self.configuration_dir = configuration_dir
20
+ self.configuration_dir.mkdir(parents=True, exist_ok=True)
21
self.event_handler = event_handler
22
self.observer = Observer()
23
0 commit comments