We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 519532b commit f7e5549Copy full SHA for f7e5549
src/guidellm/__main__.py
@@ -19,8 +19,8 @@
19
from guidellm.utils import DefaultGroupHandler
20
from guidellm.utils import cli as cli_tools
21
22
-STRATEGY_PROFILE_CHOICES = set(
23
- list(get_args(ProfileType)) + list(get_args(StrategyType))
+STRATEGY_PROFILE_CHOICES = list(
+ set(list(get_args(ProfileType)) + list(get_args(StrategyType)))
24
)
25
26
@@ -320,10 +320,7 @@ def run(
320
321
322
323
-@benchmark.command(
324
- "from-file",
325
- help="Load a saved benchmark report."
326
-)
+@benchmark.command("from-file", help="Load a saved benchmark report.")
327
@click.argument(
328
"path",
329
type=click.Path(file_okay=True, dir_okay=False, exists=True),
0 commit comments