Skip to content

Commit

Permalink
apply black
Browse files Browse the repository at this point in the history
  • Loading branch information
crflynn committed Aug 18, 2019
1 parent 38ade90 commit 25eab6c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions chicken_dinner/cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from chicken_dinner.assets.dictionary import update_dictionary


CONTEXT_SETTINGS = dict(help_option_names=['-h', '--help'])
CONTEXT_SETTINGS = dict(help_option_names=["-h", "--help"])


def get_pubg(api_key, shard):
Expand Down Expand Up @@ -133,8 +133,7 @@ def replay(api_key, shard, wins_only, latest, size, path, verbose, player_name):
match_telemetry = match.get_telemetry()
click.secho("Rendering: " + match_id, fg="yellow")
filename = os.path.join(
path,
player_name + "_" + match.created_at.replace("-", "").replace(":", "") + "_" + match_id + ".html"
path, player_name + "_" + match.created_at.replace("-", "").replace(":", "") + "_" + match_id + ".html"
)
match_telemetry.playback_animation(
filename,
Expand Down

0 comments on commit 25eab6c

Please sign in to comment.