Skip to content

Commit

Permalink
Removed unused variable in extract_to_fstar.py
Browse files Browse the repository at this point in the history
  • Loading branch information
xvzcf committed Oct 11, 2023
1 parent f072f9e commit 5a2853a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions extract_to_fstar.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import sys


def shell(command, expect=0, cwd=None, format_filter_string=False):
def shell(command, expect=0, cwd=None):
subprocess_stdout = subprocess.DEVNULL

print("Command: ", end="")
Expand Down Expand Up @@ -101,7 +101,6 @@ def shell(command, expect=0, cwd=None, format_filter_string=False):
"fstar",
],
cwd=options.crate_path,
format_filter_string=True,
)
elif options.kyber_reference:
shell(
Expand All @@ -114,7 +113,6 @@ def shell(command, expect=0, cwd=None, format_filter_string=False):
"fstar",
],
cwd=".",
format_filter_string=True,
)
else:
shell(["cargo", "hax", "into", "fstar"], cwd=options.crate_path)

0 comments on commit 5a2853a

Please sign in to comment.