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 9a45d28 commit 13f5fcdCopy full SHA for 13f5fcd
src/attributecode/util.py
@@ -88,6 +88,7 @@ def check_file_names(paths):
88
systems (such as Linux), a tool must raise an error if two ABOUT files
89
stored in the same directory have the same lowercase file name.
90
"""
91
+ # FIXME: this should be a defaultdicts that accumulates all duplicated paths
92
seen = {}
93
errors = []
94
for orig_path in paths:
@@ -116,6 +117,9 @@ def check_file_names(paths):
116
117
118
119
def check_duplicate_keys_about_file(context):
120
+ """
121
+
122
123
keys = []
124
dup_keys = []
125
for line in context.splitlines():
0 commit comments