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 251ff97 commit 3c087b0Copy full SHA for 3c087b0
pyproject.toml
@@ -30,6 +30,7 @@ repository = "https://github.com/RedisGraph/redisgraph-bulk-loader"
30
python = "^3.8.5"
31
click = "^8.0.1"
32
redis = "^3.5.3"
33
+pathos = "^0.2.8"
34
35
[tool.poetry.dev-dependencies]
36
codecov = "^2.1.11"
redisgraph_bulk_loader/query_buffer.py
@@ -66,7 +66,7 @@ def clear_buffer(self):
66
self.buffer_size = 0
67
self.node_count = 0
68
self.relation_count = 0
69
-
+
70
def add_task(self, task):
71
self.tasks.append(task)
72
if len(self.tasks) == 5:
0 commit comments