We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6779c37 commit e01b826Copy full SHA for e01b826
launcher/__init__.py
@@ -1 +0,0 @@
1
-
launcher/launch.py
@@ -2,12 +2,13 @@
2
"""
3
Main launch script.
4
5
+# pylint: disable=wrong-import-position
6
import argparse
7
import sys
8
from pathlib import Path
9
-cvf_lib = str(Path(__file__).resolve().parent.parent.joinpath("cvf").joinpath("cv"))
10
-sys.path.append(cvf_lib)
+CVF_LIB = str(Path(__file__).resolve().parent.parent.joinpath("cvf").joinpath("cv"))
11
+sys.path.append(CVF_LIB)
12
13
from solving.full_launcher import FullLauncher as Launcher
14
0 commit comments