Skip to content

Commit 3c087b0

Browse files
Add missing pathos dependency (#78)
1 parent 251ff97 commit 3c087b0

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ repository = "https://github.com/RedisGraph/redisgraph-bulk-loader"
3030
python = "^3.8.5"
3131
click = "^8.0.1"
3232
redis = "^3.5.3"
33+
pathos = "^0.2.8"
3334

3435
[tool.poetry.dev-dependencies]
3536
codecov = "^2.1.11"

redisgraph_bulk_loader/query_buffer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def clear_buffer(self):
6666
self.buffer_size = 0
6767
self.node_count = 0
6868
self.relation_count = 0
69-
69+
7070
def add_task(self, task):
7171
self.tasks.append(task)
7272
if len(self.tasks) == 5:

0 commit comments

Comments
 (0)