saif-deepsource / apkleaks

Errors detected in .deepsource.toml.

Argument redefined from local PYL-R1704
Anti-pattern
Major
1 occurrence in this check
Redefining argument with the local name 'path'
 95	def finder(self, pattern, path):
 96		matcher = re.compile(pattern)
 97		found = []
 98		for path, _, files in os.walk(path): 99			for fn in files:
100				filepath = os.path.join(path, fn)
101				if mimetypes.guess_type(filepath)[0] is None: