mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-07-23 09:24:31 +02:00
Applied Black, refs #568
This commit is contained in:
parent
80b5fa7f12
commit
2d55f185ff
1 changed files with 1 additions and 1 deletions
|
|
@ -1543,7 +1543,7 @@ def create_table(
|
|||
coltypes[name] = ctype.upper()
|
||||
# Does table already exist?
|
||||
if table in db.table_names():
|
||||
if (not ignore and not replace and not transform):
|
||||
if not ignore and not replace and not transform:
|
||||
raise click.ClickException(
|
||||
'Table "{}" already exists. Use --replace to delete and replace it.'.format(
|
||||
table
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue