Skip to content

Commit

Permalink
seal5/backends/patterngen/writer.py: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippvK committed Aug 23, 2024
1 parent bd048fb commit 33249e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion seal5/backends/patterngen/writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def process_instrunction(instr_def, set_name, set_dir, mattr, predicate, xlen):
futures.append(future)
results = []
for future in as_completed(futures):
result_, includes_ = future.result
result_, includes_ = future.result()
results.append(result_)
if result_:
includes.extend(includes_)
Expand Down

0 comments on commit 33249e7

Please sign in to comment.