Skip to content

Commit

Permalink
black fix
Browse files Browse the repository at this point in the history
  • Loading branch information
fhenneke committed Jan 15, 2024
1 parent 907f46d commit e3ec33a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/queries/test_quote_rewards.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ class TestQuoteRewards(unittest.TestCase):
def setUp(self) -> None:
db_url = "postgres:postgres@localhost:5432/postgres"
self.fetcher = MultiInstanceDBFetcher([db_url])
with open("./tests/queries/quote_rewards_test_db.sql", "r", encoding="utf-8") as file:
with open(
"./tests/queries/quote_rewards_test_db.sql", "r", encoding="utf-8"
) as file:
self.fetcher.connections[0].execute(file.read())

def test_get_quote_rewards(self):
Expand Down

0 comments on commit e3ec33a

Please sign in to comment.