Codesign: CLeanup, redundant semicolon

This commit is contained in:
Sergey Sharybin 2020-06-30 11:20:37 +02:00
parent 4176adaf96
commit 53799d3ed2
1 changed files with 2 additions and 2 deletions

View File

@ -168,12 +168,12 @@ class BaseCodeSigner(metaclass=abc.ABCMeta):
def signed_archive_info_for_request_id(
self, request_id: str) -> ArchiveWithIndicator:
return self.archive_info_for_request_id(
self.signed_storage_dir, request_id);
self.signed_storage_dir, request_id)
def unsigned_archive_info_for_request_id(
self, request_id: str) -> ArchiveWithIndicator:
return self.archive_info_for_request_id(
self.unsigned_storage_dir, request_id);
self.unsigned_storage_dir, request_id)
############################################################################
# Buildbot worker side helpers.