We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22297ee commit f79add7Copy full SHA for f79add7
2 files changed
extropy/cli/commands/sample.py
@@ -147,7 +147,7 @@ def sample_command(
147
f"Loaded scenario: [bold]{scenario_name}[/bold] "
148
f"({len(merged_attributes)} attributes: {len(pop_spec.attributes)} base + {len(extended_attrs)} extended)",
149
scenario=scenario_name,
150
- base_population=base_pop_ref,
+ base_population=f"{pop_name}.v{pop_version}",
151
attribute_count=len(merged_attributes),
152
agent_count=count,
153
)
extropy/core/models/scenario.py
@@ -18,7 +18,7 @@
18
from datetime import datetime
19
from enum import Enum
20
from pathlib import Path
21
-from typing import TYPE_CHECKING, Any, Literal
+from typing import TYPE_CHECKING, Literal
22
23
import yaml
24
from pydantic import BaseModel, Field
0 commit comments