diff --git a/sqlite_utils/cli.py b/sqlite_utils/cli.py index a64f8e0..e10de8c 100644 --- a/sqlite_utils/cli.py +++ b/sqlite_utils/cli.py @@ -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