mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-23 06:01:11 +00:00
Factor record_issue into its own method
This commit is contained in:
parent
568ec7cb61
commit
b7b1a2adbc
|
@ -43,11 +43,14 @@ class IssueTracker(object):
|
||||||
for i, line in enumerate(iter(f.readline, b"")):
|
for i, line in enumerate(iter(f.readline, b"")):
|
||||||
self.check_file_line(filepath, line, i + 1)
|
self.check_file_line(filepath, line, i + 1)
|
||||||
|
|
||||||
|
def record_issue(self, filepath, line_number):
|
||||||
|
if filepath not in self.files_with_issues.keys():
|
||||||
|
self.files_with_issues[filepath] = []
|
||||||
|
self.files_with_issues[filepath].append(line_number)
|
||||||
|
|
||||||
def check_file_line(self, filepath, line, line_number):
|
def check_file_line(self, filepath, line, line_number):
|
||||||
if self.issue_with_line(line):
|
if self.issue_with_line(line):
|
||||||
if filepath not in self.files_with_issues.keys():
|
self.record_issue(filepath, line_number)
|
||||||
self.files_with_issues[filepath] = []
|
|
||||||
self.files_with_issues[filepath].append(line_number)
|
|
||||||
|
|
||||||
def output_file_issues(self, logger):
|
def output_file_issues(self, logger):
|
||||||
if self.files_with_issues.values():
|
if self.files_with_issues.values():
|
||||||
|
|
Loading…
Reference in a new issue