Skip to content

Commit

Permalink
Fix checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
ivyazmitinov committed Jun 27, 2024
1 parent 3517850 commit f25b4b2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/test/regress/citus_tests/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -1056,7 +1056,9 @@ def cleanup_users(self):
def cleanup_databases(self):
for database in self.databases:
self.sql(
sql.SQL("DROP DATABASE IF EXISTS {} WITH (FORCE)").format(sql.Identifier(database))
sql.SQL("DROP DATABASE IF EXISTS {} WITH (FORCE)").format(
sql.Identifier(database)
)
)

def cleanup_schemas(self):
Expand Down

0 comments on commit f25b4b2

Please sign in to comment.