Skip to content

Commit

Permalink
QA formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
sei-aderr committed Jan 13, 2025
1 parent 18cf4b5 commit 65f1b73
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
5 changes: 4 additions & 1 deletion mlte/store/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
9 changes: 6 additions & 3 deletions test/store/custom_list/test_underlying.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 65f1b73

Please sign in to comment.