We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f8d6bb commit a0395e5Copy full SHA for a0395e5
filexdb/document.py
@@ -1,4 +1,4 @@
1
-from typing import Mapping
+from typing import Mapping, List
2
import uuid
3
import json
4
@@ -44,7 +44,7 @@ def prettify(self) -> str:
44
45
46
class JsonArray(list):
47
- def __init__(self, _value: list) -> None:
+ def __init__(self, _value:list) -> None:
48
self.value = _value
49
super().__init__(self.value)
50
@@ -63,7 +63,7 @@ def prettify(self) -> str:
63
64
return self.value
65
66
- def docs_count(self) -> int:
+ def count_item(self) -> int:
67
"""
68
Return amount of Document found.
69
0 commit comments