From 9774851d5bfd8087665ce61f975cc53c333f2d62 Mon Sep 17 00:00:00 2001 From: Andrew Morgan Date: Sun, 3 Jan 2021 23:54:03 -0500 Subject: [PATCH] lint --- my_project_name/storage.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/my_project_name/storage.py b/my_project_name/storage.py index 1e84ea0..8fd506d 100644 --- a/my_project_name/storage.py +++ b/my_project_name/storage.py @@ -109,8 +109,7 @@ class Storage(object): # logger.info("Database migrated to v1") def _execute(self, *args): - """A wrapper around cursor.execute that transforms placeholder ?'s to %s for postgres - """ + """A wrapper around cursor.execute that transforms placeholder ?'s to %s for postgres""" if self.db_type == "postgres": self.cursor.execute(args[0].replace("?", "%s"), *args[1:]) else: