Skip to content

Commit

Permalink
Fix the typing issue.
Browse files Browse the repository at this point in the history
Signed-off-by: Milan Balazs <[email protected]>
  • Loading branch information
milanbalazs committed Sep 12, 2024
1 parent 97ac724 commit 7f1c776
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions podman/domain/system.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""SystemManager to provide system level information from Podman service."""

import logging
from typing import Any, Dict, Optional
from typing import Any, Dict, Optional, Union

from podman.api.client import APIClient
from podman import api
Expand Down Expand Up @@ -47,7 +47,7 @@ def login(
auth: Optional[str] = None,
identitytoken: Optional[str] = None,
registrytoken: Optional[str] = None,
tls_verify: Optional[bool, str] = None,
tls_verify: Optional[Union[bool, str]] = None,
) -> Dict[str, Any]:
"""Log into Podman service.
Expand Down

0 comments on commit 7f1c776

Please sign in to comment.