Skip to content

Commit e01b826

Browse files
committed
Fix code style
1 parent 6779c37 commit e01b826

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

launcher/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +0,0 @@
1-

launcher/launch.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@
22
"""
33
Main launch script.
44
"""
5+
# pylint: disable=wrong-import-position
56
import argparse
67
import sys
78
from pathlib import Path
89

9-
cvf_lib = str(Path(__file__).resolve().parent.parent.joinpath("cvf").joinpath("cv"))
10-
sys.path.append(cvf_lib)
10+
CVF_LIB = str(Path(__file__).resolve().parent.parent.joinpath("cvf").joinpath("cv"))
11+
sys.path.append(CVF_LIB)
1112

1213
from solving.full_launcher import FullLauncher as Launcher
1314

0 commit comments

Comments
 (0)