Skip to content

Commit

Permalink
avoid type arg due to generic type stub
Browse files Browse the repository at this point in the history
  • Loading branch information
ankona committed Aug 9, 2023
1 parent c433ae7 commit ea3d5a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion smartsim/_core/utils/redis.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def check_cluster_status(
# wait for cluster to spin up
time.sleep(5)
try:
redis_tester: RedisCluster[t.Any] = RedisCluster(
redis_tester: "RedisCluster[t.Any]" = RedisCluster(
startup_nodes=cluster_nodes
)
redis_tester.set("__test__", "__test__")
Expand Down

0 comments on commit ea3d5a0

Please sign in to comment.