Skip to content

Commit

Permalink
Comply to black formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jonakoudijs committed Mar 13, 2021
1 parent 9b22c74 commit ae2a997
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ def redis_test(redis_config):
ssl=redis_config["ssl"],
username=redis_config["username"],
password=redis_config["password"],
socket_timeout=redis_config["timeout"]
socket_timeout=redis_config["timeout"],
)
# basic redis ping test
rds.ping()
Expand Down Expand Up @@ -344,7 +344,7 @@ def cache_read(gameid):
ssl=cfg["ssl"],
username=cfg["username"],
password=cfg["password"],
socket_timeout=cfg["timeout"]
socket_timeout=cfg["timeout"],
)

try:
Expand Down Expand Up @@ -386,7 +386,7 @@ def cache_write(gameid, data, expiration=config.CACHE_EXPIRATION):
ssl=cfg["ssl"],
username=cfg["username"],
password=cfg["password"],
socket_timeout=cfg["timeout"]
socket_timeout=cfg["timeout"],
)

# write cache data and set ttl
Expand Down

0 comments on commit ae2a997

Please sign in to comment.