core.common: move assert_subpackage to my.core.internal

This commit is contained in:
Dima Gerasimov 2024-08-15 18:49:19 +03:00 committed by karlicoss
parent 88f3c17c27
commit 7f8a502310
9 changed files with 17 additions and 13 deletions

View file

@ -1,7 +1,8 @@
'''
TODO doesn't really belong to 'core' morally, but can think of moving out later
'''
from .common import assert_subpackage; assert_subpackage(__name__)
from .internal import assert_subpackage; assert_subpackage(__name__)
from typing import Iterable, Any, Optional, Dict