Skip to content

Commit b78d277

Browse files
authored
Merge pull request #16 from JdeRobot/issue-15
Linter launch command fix
2 parents f242d34 + 297109b commit b78d277

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

manager/manager/lint/linter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def evaluate_code(self, code, warnings=False):
2727

2828
open("user_code.py", "r")
2929

30-
command = "export PYTHONPATH=$PYTHONPATH:/$EXERCISE_FOLDER/python_template/ros1_noetic; python3 RoboticsAcademy/src/manager/manager/lint/pylint_checker.py" ret = subprocess.run(command, capture_output=True, shell=True)
30+
command = "export PYTHONPATH=$PYTHONPATH:/$EXERCISE_FOLDER/python_template/ros1_noetic; python3 RoboticsAcademy/src/manager/manager/lint/pylint_checker.py"
3131
ret = subprocess.run(command, capture_output=True, shell=True)
3232
result = ret.stdout.decode()
3333
result = result + "\n"

0 commit comments

Comments
 (0)