Skip to content

Commit

Permalink
Remove unused imports cli.py
Browse files Browse the repository at this point in the history
  • Loading branch information
amosbastian committed Feb 19, 2019
1 parent 98e6251 commit ed88739
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions fpl/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,12 @@

import aiohttp
import click
import requests
from appdirs import user_data_dir
from prettytable import PrettyTable

from fpl import FPL

from .constants import API_URLS, MYTEAM_FORMAT, PICKS_FORMAT
from .constants import MYTEAM_FORMAT, PICKS_FORMAT
from .utils import chip_converter

data_directory = user_data_dir("fpl", "fpl")
Expand Down Expand Up @@ -102,7 +101,7 @@ def used_chips(chips):
"""Returns formatted string of used chips."""
if not chips:
return "NONE."
used = ["{} (GW {})".format(chip_converter(chip["name"], chip["event"]))]
used = ["{} (GW {})".format(chip_converter(chip["name"]), chip["event"])]
return ", ".join(used)


Expand Down

0 comments on commit ed88739

Please sign in to comment.