Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
saulshanabrook committed Sep 14, 2023
1 parent 959b382 commit b56f547
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions python/tests/test_bindings.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import datetime
import json
import os
import pathlib
Expand Down Expand Up @@ -104,13 +103,11 @@ def test_parse_and_run_program_exception(self):

def test_run_rules(self):
egraph = EGraph()
start_time = datetime.datetime.now()
egraph.run_program(
Datatype("Math", [Variant("Add", ["Math", "Math"])]),
RewriteCommand("", Rewrite(Call("Add", [Var("a"), Var("b")]), Call("Add", [Var("b"), Var("a")]))),
RunSchedule(Repeat(10, Run(RunConfig("")))),
)
end_time = datetime.datetime.now()

run_report = egraph.run_report()
assert isinstance(run_report, RunReport)
Expand Down

0 comments on commit b56f547

Please sign in to comment.