We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 594a872 commit 73ea2eeCopy full SHA for 73ea2ee
1 file changed
scripts/available_software/tests/test_md.py
@@ -1,8 +1,6 @@
1
-from mdutils.mdutils import MdUtils
2
import available_software
3
import os
4
import filecmp
5
-import shutil
6
7
8
class TestMarkdown:
@@ -21,7 +19,7 @@ def teardown_class(cls):
21
19
directory = os.path.join(cls.path, "detail")
22
20
if os.path.exists(directory):
23
for file in os.listdir(directory):
24
- if file.endswith('.md'):
+ if file.endswith(".md"):
25
os.remove(os.path.join(directory, file))
26
27
# ---------------------------
0 commit comments