Skip to content

Commit

Permalink
chore: pass tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sujuka99 committed Sep 26, 2023
1 parent 9d4a761 commit 25b0c08
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from __future__ import annotations

import contextlib
import logging
from typing import TYPE_CHECKING

Expand All @@ -14,11 +13,11 @@
from kpops.utils.colorify import magentaify
from kpops.utils.dict_differ import render_diff

with contextlib.suppress(ImportError):
from typing import Self

if TYPE_CHECKING:
from typing_extensions import Self
try:
from typing import Self
except ImportError:
from typing_extensions import Self

from kpops.cli.pipeline_config import PipelineConfig

Expand Down

0 comments on commit 25b0c08

Please sign in to comment.