1
0
Fork 0

Rename core module

This commit is contained in:
Maurizio Porrato 2023-08-19 09:38:51 +01:00
parent 9b6256a73c
commit 0c02a5652f
3 changed files with 2 additions and 2 deletions

View File

@ -1,3 +1,3 @@
from .classes import Bundle, Operator, Repo
from .core import Bundle, Operator, Repo
__all__ = ["Repo", "Operator", "Bundle"]

View File

@ -12,7 +12,7 @@ from pathlib import Path
from typing import Optional, Union
from .checks import get_checks, run_suite
from .classes import Bundle, Operator, Repo
from .core import Bundle, Operator, Repo
from .exceptions import OperatorRepoException