Skip to content

Commit b95e776

Browse files
committed
minor change for less code and easier modification
1 parent eed33cd commit b95e776

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

py/tests/sqlite_leveldb_comparison.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ def test():
4444

4545
if leveldb_total_time < sqlite_total_time:
4646
winner = "leveldb"
47-
ratio = round(sqlite_total_time / leveldb_total_time, 2)
47+
ratio = sqlite_total_time / leveldb_total_time
4848
else:
4949
winner = "sqlite"
50-
ratio = round(leveldb_total_time / sqlite_total_time, 2)
50+
ratio = leveldb_total_time / sqlite_total_time
5151

52-
print(f"{winner} is {ratio}x times faster")
52+
print(f"{winner} is {round(ratio, 2)} times faster")
5353

5454

5555
if __name__ == "__main__":

0 commit comments

Comments
 (0)