We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 468e5c1 commit 3356e2aCopy full SHA for 3356e2a
docs/addMetaData.py
@@ -21,14 +21,14 @@
21
"modified": 0,
22
"unmodified": 0,
23
}
24
-docs_dir = './docs' if os.path.isdir('./docs') else '.'
+docs_dir = "./docs" if os.path.isdir("./docs") else "."
25
26
for root, dirs, files in os.walk(docs_dir):
27
for name in files:
28
if name.endswith(".md"):
29
filename = os.path.join(root, name)
30
# print(filename)
31
- with open(filename, 'r+') as f:
+ with open(filename, "r+") as f:
32
data = f.read()
33
if not data.startswith(metadata_check):
34
f.seek(0)
0 commit comments