[CHORE] string formatting default length 88 (#1887)

* [CHORE] string formatting default length 88

uses blacks default off 88 and enabled autostringformatting

* formatting

* nitpicks jackstar

fix
This commit is contained in:
dni ⚡ 2023-08-24 11:26:09 +02:00 committed by GitHub
parent 2ab18544c3
commit 4e6f229db2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
34 changed files with 245 additions and 160 deletions

View file

@ -55,7 +55,8 @@ def check_db_versions(sqdb):
version = dbpost[key]
if value != version:
raise Exception(
f"sqlite database version ({value}) of {key} doesn't match postgres database version {version}"
f"sqlite database version ({value}) of {key} doesn't match postgres"
f" database version {version}"
)
connection = postgres.connection
@ -174,7 +175,10 @@ parser.add_argument(
dest="sqlite_path",
const=True,
nargs="?",
help=f"SQLite DB folder *or* single extension db file to migrate. Default: {sqfolder}",
help=(
"SQLite DB folder *or* single extension db file to migrate. Default:"
f" {sqfolder}"
),
default=sqfolder,
type=str,
)