mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2026-03-06 16:07:22 +01:00
Fixed E703 (useless-semicolon): Statement ends with an unnecessary semicolon
This commit is contained in:
committed by
Joshua Tauberer
parent
57dcd4bb51
commit
ec32e1d578
@@ -213,7 +213,7 @@ def run_migrations():
|
||||
migration_id = None
|
||||
if os.path.exists(migration_id_file):
|
||||
with open(migration_id_file) as f:
|
||||
migration_id = f.read().strip();
|
||||
migration_id = f.read().strip()
|
||||
|
||||
if migration_id is None:
|
||||
# Load the legacy location of the migration ID. We'll drop support
|
||||
|
||||
Reference in New Issue
Block a user