Skip to content

Commit 73ea2ee

Browse files
committed
Fix lint issues
1 parent 594a872 commit 73ea2ee

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

scripts/available_software/tests/test_md.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
from mdutils.mdutils import MdUtils
21
import available_software
32
import os
43
import filecmp
5-
import shutil
64

75

86
class TestMarkdown:
@@ -21,7 +19,7 @@ def teardown_class(cls):
2119
directory = os.path.join(cls.path, "detail")
2220
if os.path.exists(directory):
2321
for file in os.listdir(directory):
24-
if file.endswith('.md'):
22+
if file.endswith(".md"):
2523
os.remove(os.path.join(directory, file))
2624

2725
# ---------------------------

0 commit comments

Comments
 (0)