Add documentation of exposed functions

pull/2854/head
Jimmy Brisson 2016-09-30 14:57:08 -05:00
parent e012185602
commit 5f8fbac56f
1 changed files with 6 additions and 0 deletions

View File

@ -134,6 +134,12 @@ class Resources:
return dupe_dict, dupe_headers
def detect_duplicates(self, toolchain):
"""Detect all potential ambiguities in filenames and report them with
a toolchain notification
Positional Arguments:
toolchain - used for notifications
"""
count = 0
dupe_dict, dupe_headers = self._collect_duplicates(dict(), dict())
for objname, filenames in dupe_dict.iteritems():