Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Dec 13, 2024
1 parent d6daaf1 commit ffdf1c1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion unittests/interface/provenance/test_provenance_database.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ def test_power(self):
db.insert_power("total time (seconds)", 6.81)
with ProvenanceReader() as db:
data = db.run_query("select * from power_provenance")
power = [(1, 1, 'num_cores', 34.0), (2, 1, 'total time (seconds)', 6.81)]
power = [(1, 1, 'num_cores', 34.0),
(2, 1, 'total time (seconds)', 6.81)]
self.assertListEqual(data, power)

def test_timings(self):
Expand Down

0 comments on commit ffdf1c1

Please sign in to comment.