Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions podman/api/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Tools for connecting to a Podman service."""

from podman.api.cached_property import cached_property
from podman.api.client import APIClient
from podman.api.api_versions import VERSION, COMPATIBLE_VERSION
from podman.api.http_utils import encode_auth_header, prepare_body, prepare_filters
Expand All @@ -24,7 +23,6 @@
'COMPATIBLE_VERSION',
'DEFAULT_CHUNK_SIZE',
'VERSION',
'cached_property',
'create_tar',
'decode_header',
'encode_auth_header',
Expand Down
10 changes: 0 additions & 10 deletions podman/api/cached_property.py

This file was deleted.

2 changes: 1 addition & 1 deletion podman/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
import logging
import os
from contextlib import AbstractContextManager
from functools import cached_property
from pathlib import Path
from typing import Any, Optional

from podman.api import cached_property
from podman.api.client import APIClient
from podman.api.path_utils import get_runtime_dir
from podman.domain.config import PodmanConfig
Expand Down
2 changes: 1 addition & 1 deletion podman/domain/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

import sys
import urllib
from functools import cached_property
from pathlib import Path
from typing import Optional
import json

from podman.api import cached_property
from podman.api.path_utils import get_xdg_config_home

if sys.version_info >= (3, 11):
Expand Down