From 65f1b73aa552f5fe4d0862aea1d4492e10d5d75c Mon Sep 17 00:00:00 2001 From: Alex Derr Date: Mon, 13 Jan 2025 15:38:03 -0500 Subject: [PATCH] QA formatting --- mlte/store/base.py | 5 ++++- test/store/custom_list/test_underlying.py | 9 ++++++--- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/mlte/store/base.py b/mlte/store/base.py index 2a38b47dd..7af9a974f 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 b429c5928..73f784f30 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