Skip to content

Commit f79add7

Browse files
fix: resolve lint errors (undefined var, unused import)
1 parent 22297ee commit f79add7

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

extropy/cli/commands/sample.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ def sample_command(
147147
f"Loaded scenario: [bold]{scenario_name}[/bold] "
148148
f"({len(merged_attributes)} attributes: {len(pop_spec.attributes)} base + {len(extended_attrs)} extended)",
149149
scenario=scenario_name,
150-
base_population=base_pop_ref,
150+
base_population=f"{pop_name}.v{pop_version}",
151151
attribute_count=len(merged_attributes),
152152
agent_count=count,
153153
)

extropy/core/models/scenario.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from datetime import datetime
1919
from enum import Enum
2020
from pathlib import Path
21-
from typing import TYPE_CHECKING, Any, Literal
21+
from typing import TYPE_CHECKING, Literal
2222

2323
import yaml
2424
from pydantic import BaseModel, Field

0 commit comments

Comments
 (0)