diff --git a/mlte/store/base.py b/mlte/store/base.py index 2a38b47d..7af9a974 100644 --- a/mlte/store/base.py +++ b/mlte/store/base.py @@ -174,7 +174,10 @@ class ResourceMapper: DEFAULT_LIST_LIMIT = 100 """Default limit for lists.""" - def create(self,new_resource: Any,) -> Any: + def create( + self, + new_resource: Any, + ) -> Any: """ Create a new resource. :param new_resource: The data to create the resource diff --git a/test/store/custom_list/test_underlying.py b/test/store/custom_list/test_underlying.py index b429c592..73f784f3 100644 --- a/test/store/custom_list/test_underlying.py +++ b/test/store/custom_list/test_underlying.py @@ -9,9 +9,12 @@ import mlte.store.error as errors from mlte.store.custom_list.store import CustomListStore from mlte.store.custom_list.store_session import ManagedCustomListSession -from test.store.custom_list.fixture import get_test_entry, get_test_list, custom_list_stores, create_test_store # noqa - -from .fixture import custom_list_stores +from test.store.custom_list.fixture import ( # noqa + create_test_store, + custom_list_stores, + get_test_entry, + get_test_list, +) # ----------------------------------------------------------------------------- # Tests