Fixed the same bug dealing with import paths.

This commit is contained in:
Ege Emir Özkan
2020-08-10 06:48:07 +03:00
parent ee65e6e2db
commit c051cddac5
2 changed files with 2 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
from typing import Dict, Optional, List, Callable
from dataclasses import Field, asdict
import sqlite3 as sql
from commons import _convert_sql_format, _convert_type
from .commons import _convert_sql_format, _convert_type
def _get_default(default_object: object, type_overload: Dict[Optional[type], str]) -> str:
"""

View File

@@ -1,7 +1,6 @@
import sqlite3 as sql
from typing import List, Tuple, Any
from commons import _convert_sql_format
from .commons import _convert_sql_format
def is_fetchable(class_: type, obj_id: int) -> bool: