Skip to content

Commit

Permalink
Flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
rowleya committed Dec 11, 2023
1 parent 0e6b670 commit 5b82cc5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion unittests/make_tools/test_convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ def test_convert(self):
class_file = sys.modules[self.__module__].__file__
path = os.path.dirname(os.path.abspath(class_file))
os.chdir(path)
os.environ["C_LOGS_DICT"] = str(os.path.join(path, "convert_1.sqlite3"))
os.environ["C_LOGS_DICT"] = str(os.path.join(path,
"convert_1.sqlite3"))
# Clear the database
LogSqlLiteDatabase(True)
src = "mock_src"
Expand Down
3 changes: 2 additions & 1 deletion unittests/make_tools/test_file_convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ class TestConverter(unittest.TestCase):
def test_convert(self):
class_file = sys.modules[self.__module__].__file__
path = os.path.dirname(os.path.abspath(class_file))
os.environ["C_LOGS_DICT"] = str(os.path.join(path, "convert_2.sqlite3"))
os.environ["C_LOGS_DICT"] = str(os.path.join(path,
"convert_2.sqlite3"))
file_name = "weird,file.c"
src = os.path.join(path, "mock_src")
dest = os.path.join(path, "modified_src")
Expand Down

0 comments on commit 5b82cc5

Please sign in to comment.