From 2d55f185ff853d9a9f5010e2a5bd6626902c1f6c Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sat, 22 Jul 2023 12:22:15 -0700 Subject: [PATCH] Applied Black, refs #568 --- sqlite_utils/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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