Skip to content

Commit

Permalink
remove superfluous space
Browse files Browse the repository at this point in the history
  • Loading branch information
jdelic committed Sep 16, 2024
1 parent f2e0073 commit f5c3d74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aptly_api/parts/mirrors.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit f5c3d74

Please sign in to comment.