diff --git a/scripts/port_from_sqlite_to_postgres.py b/scripts/port_from_sqlite_to_postgres.py
index fc1603c1c999b072309970b6b59ce5eabef53f8b..f4b6ed0681a7837d31cf74915dc52b5f95176d76 100644
--- a/scripts/port_from_sqlite_to_postgres.py
+++ b/scripts/port_from_sqlite_to_postgres.py
@@ -268,7 +268,7 @@ class CursesProgress(Progress):
 
         if self.finished:
             self.stdscr.addstr(
-                self.rows-1, 0 ,
+                self.rows-1, 0,
                 "Press any key to exit...",
             )
 
@@ -561,7 +561,6 @@ if __name__ == "__main__":
 
     args = parser.parse_args()
 
-
     logging_config = {
         "level": logging.DEBUG if args.v else logging.INFO,
         "format": "%(asctime)s - %(name)s - %(lineno)d - %(levelname)s - %(message)s"