From f5c3d74d307915c34ff18159a0472c50af9aec05 Mon Sep 17 00:00:00 2001 From: Jonas Maurus Date: Tue, 17 Sep 2024 00:07:35 +0200 Subject: [PATCH] remove superfluous space --- aptly_api/parts/mirrors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aptly_api/parts/mirrors.py b/aptly_api/parts/mirrors.py index 1cae53f..36fdac0 100644 --- a/aptly_api/parts/mirrors.py +++ b/aptly_api/parts/mirrors.py @@ -48,7 +48,7 @@ def mirror_from_response(api_response: Dict[str, str]) -> Mirror: downloaddate=cast(str, api_response["LastDownloadDate"]) if "LastDownloadDate" in api_response else None, filter=cast(str, api_response["Filter"]) if "Filter" in api_response else None, status=cast(int, api_response["Status"]) if "Status" in api_response else None, - worker_pid=cast( int, api_response["WorkerPID"]) if "WorkerPID" in api_response else None, + worker_pid=cast(int, api_response["WorkerPID"]) if "WorkerPID" in api_response else None, filter_with_deps=cast(bool, api_response["FilterWithDeps"]) if "FilterWithDeps" in api_response else False, skip_component_check=cast(bool, api_response["SkipComponentCheck"] ) if "SkipComponentCheck" in api_response else False,