Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
Co-authored-by: khoaguin <[email protected]>
  • Loading branch information
shubham3121 and khoaguin committed Sep 19, 2024
1 parent 1ef1148 commit 1e57362
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/syft/src/syft/store/mongo_client.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# relative
from ..serde.serializable import serializable
from .document_store import StoreClientConfig


@serializable(canonical_name="MongoStoreClientConfig", version=1)
class MongoStoreClientConfig:
class MongoStoreClientConfig(StoreClientConfig):
pass
2 changes: 1 addition & 1 deletion packages/syft/src/syft/store/mongo_document_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from .mongo_client import MongoStoreClientConfig


class MongoBsonObject:
class MongoBsonObject(StorableObjectType):
pass


Expand Down

0 comments on commit 1e57362

Please sign in to comment.