You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Auto3DSeg AutoRunner uses Fire to generate CLI. Fire supports chaining of multiple methods in a single command. However, it fails for AutoRunner and they cannot chained. I realized that the AutoRunner methods does not return self, which is a requirements for Fire CLI chaining to work.
The text was updated successfully, but these errors were encountered:
Fixes#7167
### Description
Make all the setting methods in `AutoRunner` to return `self` to enable
chaining in cli.
### Types of changes
<!--- Put an `x` in all the boxes that apply, and remove the not
applicable items -->
- [x] Non-breaking change (fix or new feature that would not break
existing functionality).
---------
Signed-off-by: Behrooz <3968947+drbeh@users.noreply.github.com>
Describe the bug
Auto3DSeg
AutoRunner
uses Fire to generate CLI. Fire supports chaining of multiple methods in a single command. However, it fails forAutoRunner
and they cannot chained. I realized that theAutoRunner
methods does not returnself
, which is a requirements for Fire CLI chaining to work.The text was updated successfully, but these errors were encountered: