Skip to content

Commit

Permalink
Clean up an inspection complaint about mutable arguments, fix a PEP8 …
Browse files Browse the repository at this point in the history
…violation.
  • Loading branch information
pauleveritt committed Nov 16, 2016
1 parent 13110ef commit b80fb89
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions arcade/draw_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -1702,7 +1702,7 @@ def draw_text(text: str,
font_size: float=12,
width: int=2000,
align="left",
font_name=['Calibri','Arial'],
font_name=('Calibri', 'Arial'),
bold: bool=False,
italic: bool=False,
anchor_x="left",
Expand Down Expand Up @@ -1752,5 +1752,4 @@ def draw_text(text: str,
label.draw()



# --- END TEXT FUNCTIONS # # #

0 comments on commit b80fb89

Please sign in to comment.