Skip to content

Commit

Permalink
remove fire dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
FynnBe committed Jun 11, 2024
1 parent 8d378d1 commit 41d6766
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions scripts/check_compatibility_ilastik.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import fire
import argparse

from bioimageio.core import test_model
from loguru import logger
from ruyaml import YAML
Expand Down Expand Up @@ -60,4 +61,7 @@ def check_compatibility_ilastik(


if __name__ == "__main__":
fire.Fire(check_compatibility_ilastik)
parser = argparse.ArgumentParser()
_ = parser.add_argument("ilastik_version")

check_compatibility_ilastik(parser.parse_args().ilastik_version)

0 comments on commit 41d6766

Please sign in to comment.