refactored correctness dir away from core sub dir into either functionality or core as appropriate

This commit is contained in:
PatchOfScotland
2023-03-31 15:55:16 +02:00
parent 5952b02be4
commit 547d5fefce
35 changed files with 69 additions and 67 deletions

View File

@ -6,8 +6,8 @@ Author(s): David Marchant
from typing import Any, Tuple
from meow_base.core.correctness.validation import check_type
from meow_base.core.correctness.vars import DEBUG_INFO, DEBUG_WARNING
from meow_base.functionality.validation import check_type
from meow_base.core.vars import DEBUG_INFO, DEBUG_WARNING
def setup_debugging(print:Any=None, logging:int=0)->Tuple[Any,int]: