diff --git a/table2sql/__init__.py b/table2sql/__init__.py index 5becc17..8822f2a 100644 --- a/table2sql/__init__.py +++ b/table2sql/__init__.py @@ -1 +1,3 @@ __version__ = "1.0.0" + +from .main import convert_table_file_to_insert_statement # noqa: F401 diff --git a/table2sql/cli.py b/table2sql/cli.py index d7380b9..1437565 100644 --- a/table2sql/cli.py +++ b/table2sql/cli.py @@ -19,7 +19,9 @@ type=str, help="Name of table to use in SQL insert statement.", ) -@click.option("--delimiter", default=",", type=str, help="Delimiter of CSV file.", show_default=True) +@click.option( + "--delimiter", default=",", type=str, help="Delimiter of CSV file.", show_default=True +) @click.option( "--has-types-row", is_flag=True,