Skip to content

Commit

Permalink
Applied Black
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw committed Mar 11, 2021
1 parent 3083cde commit 5da6a56
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,7 @@ def get_long_description():
tableau-to-sqlite=tableau_to_sqlite.cli:cli
""",
install_requires=["click", "TableauScraper"],
extras_require={
"test": ["pytest"]
},
extras_require={"test": ["pytest"]},
tests_require=["tableau-to-sqlite[test]"],
python_requires=">=3.6",
)
5 changes: 1 addition & 4 deletions tableau_to_sqlite/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,7 @@
type=click.Path(file_okay=True, dir_okay=False, allow_dash=False),
required=True,
)
@click.argument(
"tableau_views",
nargs=-1
)
@click.argument("tableau_views", nargs=-1)
@version_option()
def cli(db_path, tableau_views):
"""Fetch data from Tableau into a SQLite database
Expand Down

0 comments on commit 5da6a56

Please sign in to comment.