1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-07 12:21:11 +03:00

Pacify mypy

Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
This commit is contained in:
Gilles Peskine
2023-11-03 14:49:12 +01:00
parent 1b4f036dd4
commit 32ffbfd139

View File

@ -346,10 +346,13 @@ class MergeArtifactIssueTracker(LineIssueTracker):
return False
THIS_FILE_BASE_NAME = \
os.path.basename(inspect.getframeinfo(inspect.currentframe()).filename)
LINE_NUMBER_BEFORE_LICENSE_ISSUE_TRACKER = \
inspect.getframeinfo(inspect.currentframe()).lineno
def this_location():
frame = inspect.currentframe()
assert frame is not None
info = inspect.getframeinfo(frame)
return os.path.basename(info.filename), info.lineno
THIS_FILE_BASE_NAME, LINE_NUMBER_BEFORE_LICENSE_ISSUE_TRACKER = this_location()
class LicenseIssueTracker(LineIssueTracker):
"""Check copyright statements and license indications.