Updated to python3.10

This commit is contained in:
2022-04-30 17:15:26 +02:00
parent 588f93f7b1
commit fd68d25a1d
24 changed files with 28 additions and 32 deletions

View File

@@ -1,4 +1,4 @@
from collections import Callable
from collections.abc import Callable
from cpl_query._query.where import where_query
from cpl_query.exceptions import ExceptionArgument, ArgumentNoneException

View File

@@ -1,4 +1,4 @@
from collections import Callable
from collections.abc import Callable
from cpl_query._query.where import where_query
from cpl_query.exceptions import ArgumentNoneException, ExceptionArgument

View File

@@ -1,4 +1,4 @@
from collections import Callable
from collections.abc import Callable
from cpl_query._query.where import where_query
from cpl_query.exceptions import ArgumentNoneException, ExceptionArgument

View File

@@ -1,4 +1,4 @@
from collections import Callable
from collections.abc import Callable
from cpl_query.exceptions import ArgumentNoneException, ExceptionArgument
from cpl_query.extension.iterable_abc import IterableABC

View File

@@ -1,4 +1,4 @@
from collections import Callable
from collections.abc import Callable
from cpl_query.exceptions import ExceptionArgument, ArgumentNoneException
from cpl_query.extension.iterable_abc import IterableABC

View File

@@ -1,4 +1,4 @@
from collections import Callable
from collections.abc import Callable
from typing import Union
from cpl_query._helper import is_number

View File

@@ -1,4 +1,4 @@
from collections import Callable
from collections.abc import Callable
from cpl_query.exceptions import ExceptionArgument, ArgumentNoneException
from cpl_query.extension.iterable_abc import IterableABC

View File

@@ -1,4 +1,4 @@
from collections import Callable
from collections.abc import Callable
from typing import Union
from cpl_query._helper import is_number

View File

@@ -1,4 +1,4 @@
from collections import Callable
from collections.abc import Callable
from cpl_query.exceptions import ArgumentNoneException, ExceptionArgument
from cpl_query.extension.iterable_abc import IterableABC