Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
MasloMaslane committed Mar 21, 2024
1 parent 2f46543 commit d0540fc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/sinol_make/commands/run/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import time
import psutil
import glob
import tempfile
import shutil
from io import StringIO
from typing import Dict
Expand Down Expand Up @@ -340,7 +339,7 @@ def get_possible_score(self, groups):


def get_output_file(self, test_path):
return os.path.abspath(os.path.join("out", os.path.split(os.path.splitext(test_path)[0])[1]) + ".out")
return os.path.join("out", os.path.split(os.path.splitext(test_path)[0])[1]) + ".out"


def get_groups(self, tests):
Expand Down

0 comments on commit d0540fc

Please sign in to comment.