Skip to content

Commit 2331e7e

Browse files
committed
python 3.8
1 parent a3de93e commit 2331e7e

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
33

44
.coverage
5+
.vscode
56

67
# User-specific stuff
78
.idea/**/workspace.xml

redisgraph_bulk_loader/bulk_insert.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ async def bulk_insert(graph, host, port, password, user, unix_socket_path, nodes
9393
else:
9494
client = await aioredis.from_url(f"redis://{host}:{port}", username=user, password=password)
9595
except aioredis.exceptions.ConnectionError as e:
96-
print("Could not connect to Redis ser`ver.")
96+
print("Could not connect to Redis server.")
9797
raise e
9898

9999
# Attempt to verify that RedisGraph module is loaded

requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
asyncclick
2+
click
3+
anyio
24
aioredis==2.0.0a1
35
redis>=3.5.3
46
redisgraph

0 commit comments

Comments
 (0)