We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c67c086 commit 039a1daCopy full SHA for 039a1da
1 file changed
Updater/main.py
@@ -1,11 +1,6 @@
1
+import json
2
import os
3
import sys
-
4
-BASE_DIR = os.path.dirname(os.path.abspath(__file__))
5
-if BASE_DIR not in sys.path:
6
- sys.path.insert(0, BASE_DIR)
7
8
-import json
9
import time
10
from pathlib import Path
11
@@ -20,6 +15,10 @@
20
15
from updater.runner.process import find_processes_by_path, try_terminate
21
16
from updater.tag.reader import read
22
17
18
+BASE_DIR = os.path.dirname(os.path.abspath(__file__))
19
+if BASE_DIR not in sys.path:
+ sys.path.insert(0, BASE_DIR)
+
23
OWNER = "Sn0wo2"
24
REPO = "QuickNote"
25
INTERVAL = 5.0
0 commit comments