diff options
| author | 2024-07-07 08:55:55 +0800 | |
|---|---|---|
| committer | 2024-07-07 08:55:55 +0800 | |
| commit | c6f28bd75141da583bdd95e86d37ae5884276c55 (patch) | |
| tree | bb7afbf0c26de76dac704ec254850302f7d632a6 /hrc | |
| parent | da32df814f9949c7172290dfb4770f7c64c28a5d (diff) | |
| download | HydroRollCore-c6f28bd75141da583bdd95e86d37ae5884276c55.tar.gz HydroRollCore-c6f28bd75141da583bdd95e86d37ae5884276c55.zip | |
refactor!: change namespace<perf, feat, doc, dev>
Diffstat (limited to 'hrc')
| -rw-r--r-- | hrc/__init__.py | 8 | ||||
| -rw-r--r-- | hrc/dev/__init__.py (renamed from hrc/development/__init__.py) | 0 | ||||
| -rw-r--r-- | hrc/dev/character.py (renamed from hrc/development/character.py) | 0 | ||||
| -rw-r--r-- | hrc/doc/__init__.py (renamed from hrc/document/__init__.py) | 0 | ||||
| -rw-r--r-- | hrc/feat/__init__.py (renamed from hrc/feature/__init__.py) | 0 | ||||
| -rw-r--r-- | hrc/perf/__init__.py (renamed from hrc/performance/__init__.py) | 0 | ||||
| -rw-r--r-- | hrc/rule/__init__.py | 2 |
7 files changed, 5 insertions, 5 deletions
diff --git a/hrc/__init__.py b/hrc/__init__.py index ba4efed..b607349 100644 --- a/hrc/__init__.py +++ b/hrc/__init__.py @@ -7,7 +7,7 @@ from . import exceptions # noqa: F401 from . import config # noqa: F401 from . import dependencies # noqa: F401 from . import event # noqa: F401 -from . import performance # noqa: F401 -from . import feature # noqa: F401 -from . import document # noqa: F401 -from . import development # noqa: F401 +from . import perf # noqa: F401 +from . import feat # noqa: F401 +from . import doc # noqa: F401 +from . import dev # noqa: F401 diff --git a/hrc/development/__init__.py b/hrc/dev/__init__.py index b3e76b3..b3e76b3 100644 --- a/hrc/development/__init__.py +++ b/hrc/dev/__init__.py diff --git a/hrc/development/character.py b/hrc/dev/character.py index c883e45..c883e45 100644 --- a/hrc/development/character.py +++ b/hrc/dev/character.py diff --git a/hrc/document/__init__.py b/hrc/doc/__init__.py index e69de29..e69de29 100644 --- a/hrc/document/__init__.py +++ b/hrc/doc/__init__.py diff --git a/hrc/feature/__init__.py b/hrc/feat/__init__.py index e69de29..e69de29 100644 --- a/hrc/feature/__init__.py +++ b/hrc/feat/__init__.py diff --git a/hrc/performance/__init__.py b/hrc/perf/__init__.py index e69de29..e69de29 100644 --- a/hrc/performance/__init__.py +++ b/hrc/perf/__init__.py diff --git a/hrc/rule/__init__.py b/hrc/rule/__init__.py index 66ad686..8923f9e 100644 --- a/hrc/rule/__init__.py +++ b/hrc/rule/__init__.py @@ -162,4 +162,4 @@ class Rule(ABC, Generic[EventT, StateT, ConfigT]): func._ignore_case = ignore_case return func - return decorator + return decorator
\ No newline at end of file |
