From afe05fb7dd8765e4f5af357b00827d3a924f8443 Mon Sep 17 00:00:00 2001 From: Andrew Brookins Date: Wed, 1 Sep 2021 13:13:46 -0700 Subject: [PATCH] Remove reference to hashes in JSON example --- tests/test_json_model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_json_model.py b/tests/test_json_model.py index b09e1aa..ef34383 100644 --- a/tests/test_json_model.py +++ b/tests/test_json_model.py @@ -45,7 +45,7 @@ class Member(BaseJsonModel): email: str = Field(unique=True, index=True) join_date: datetime.date - # Creates an embedded model: stored as hash fields or JSON document. + # Creates an embedded model. address: Address # Creates an embedded list of models.