Skip to content

Commit c5bcdd0

Browse files
committed
Black reformat only.
1 parent 1e5b27f commit c5bcdd0

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

generate_dict_markdown_table.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
import os
77
import yaml
88

9+
910
def get_table_rows():
1011
"Get markdown table for docs."
1112
thisdir = os.path.dirname(__file__)
@@ -16,12 +17,7 @@ def get_table_rows():
1617
y = yaml.safe_load(f)
1718
langname = y["name"]
1819
for d in y["dictionaries"]:
19-
data = [
20-
langname,
21-
d["for"],
22-
d["type"],
23-
f"`{d['url']}`"
24-
]
20+
data = [langname, d["for"], d["type"], f"`{d['url']}`"]
2521
output.append("|" + "|".join(data) + "|")
2622
output.sort()
2723
return output

0 commit comments

Comments
 (0)