Skip to content

Commit

Permalink
bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
miili committed Oct 30, 2023
1 parent fd1b75b commit bf07e37
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lassie/waveforms/squirrel.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

from pydantic import (
AwareDatetime,
DirectoryPath,
Field,
PositiveFloat,
PositiveInt,
Expand Down Expand Up @@ -85,11 +86,11 @@ class PyrockoSquirrel(WaveformProvider):

provider: Literal["PyrockoSquirrel"] = "PyrockoSquirrel"

environment: Path = Field(
environment: DirectoryPath = Field(
default=Path("."),
description="Path to a Squirrel environment.",
)
waveform_dirs: list[Path] = Field(
waveform_dirs: list[DirectoryPath] = Field(
default=[],
description="List of directories holding the waveform files.",
)
Expand Down

0 comments on commit bf07e37

Please sign in to comment.