From 2ef69efec4408b20ed8dc9fa92a1048bd4198853 Mon Sep 17 00:00:00 2001 From: Kristian Krsnik Date: Sun, 8 Jun 2025 14:05:08 +0200 Subject: [PATCH] renamed module to avoid shaddowing --- src/cloudns/{types.py => custom_types.py} | 0 src/cloudns/main.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename src/cloudns/{types.py => custom_types.py} (100%) diff --git a/src/cloudns/types.py b/src/cloudns/custom_types.py similarity index 100% rename from src/cloudns/types.py rename to src/cloudns/custom_types.py diff --git a/src/cloudns/main.py b/src/cloudns/main.py index f7cc119..cb0460a 100644 --- a/src/cloudns/main.py +++ b/src/cloudns/main.py @@ -7,7 +7,7 @@ from typing import Any from typing_extensions import Sequence from .logger import setup_logging, getLogger -from .types import Config +from .custom_types import Config from . import cloudns