[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:
parent
2ab18544c3
commit
4e6f229db2
34 changed files with 245 additions and 160 deletions
|
|
@ -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,
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue