From 497ff55614576afe74a93408e5c1a4060917fef0 Mon Sep 17 00:00:00 2001 From: Raymond Li Date: Wed, 3 Jul 2024 12:13:08 -0400 Subject: [PATCH] Rename types file --- charachorder/__init__.py | 2 +- charachorder/{charachorder_types.py => _types.py} | 0 charachorder/device.py | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename charachorder/{charachorder_types.py => _types.py} (100%) diff --git a/charachorder/__init__.py b/charachorder/__init__.py index b090abb..ade446a 100644 --- a/charachorder/__init__.py +++ b/charachorder/__init__.py @@ -17,4 +17,4 @@ from .device import * from .errors import * -from .charachorder_types import * +from ._types import * diff --git a/charachorder/charachorder_types.py b/charachorder/_types.py similarity index 100% rename from charachorder/charachorder_types.py rename to charachorder/_types.py diff --git a/charachorder/device.py b/charachorder/device.py index 07dbea6..fddcbff 100644 --- a/charachorder/device.py +++ b/charachorder/device.py @@ -19,7 +19,7 @@ UnknownProduct, UnknownVendor, ) -from .charachorder_types import Chord, ChordPhrase, Keymap, OperatingSystem +from ._types import Chord, ChordPhrase, Keymap, OperatingSystem if TYPE_CHECKING: from typing_extensions import Self