Skip to content

Commit 5d0a8da

Browse files
committed
Fix type checking in asciidoctor-text converter by adding type ignore comment
1 parent 4e219a7 commit 5d0a8da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/asciidoctor-text/convert-it-all.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def process_node(node: dict, distro: str, dir: str = "", file_list: list = []) -
6464
attributes = os.path.normpath(os.path.join(os.getcwd(), args.attributes))
6565
with open(attributes, "r") as fin:
6666
attributes = yaml.safe_load(fin)
67-
for key, value in attributes.items():
67+
for key, value in attributes.items(): # type: ignore
6868
attribute_list = [*attribute_list, "-a", key + "=%s" % value]
6969

7070
topic_map = os.path.normpath(os.path.join(os.getcwd(), args.topic_map))

0 commit comments

Comments
 (0)