Skip to content

Commit

Permalink
Refactor module name
Browse files Browse the repository at this point in the history
  • Loading branch information
disrupted committed Jul 3, 2024
1 parent 31636ca commit 475f2ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion kpops/api/registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@

from kpops.api.exception import ClassNotFoundError
from kpops.components.base_components.pipeline_component import PipelineComponent
from kpops.const import KPOPS_MODULE

if TYPE_CHECKING:
from collections.abc import Iterator

KPOPS_MODULE = "kpops."

T = TypeVar("T")
ClassDict = dict[str, type[T]] # type -> class
Expand Down
1 change: 1 addition & 0 deletions kpops/const/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
__version__ = "6.0.1"
KPOPS = "KPOps"
KPOPS_MODULE = "kpops."

0 comments on commit 475f2ce

Please sign in to comment.