Skip to content

Commit

Permalink
DfrConfig: InitialVoltsTimes100 can be 0
Browse files Browse the repository at this point in the history
  • Loading branch information
jessicamillar committed Dec 11, 2024
1 parent f515305 commit d479111
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gwproto/named_types/dfr_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

from typing import Literal

from pydantic import PositiveInt
from pydantic import PositiveInt, StrictInt

from gwproto.named_types.channel_config import ChannelConfig


class DfrConfig(ChannelConfig):
OutputIdx: PositiveInt
InitialVoltsTimes100: PositiveInt
InitialVoltsTimes100: StrictInt
TypeName: Literal["dfr.config"] = "dfr.config"
Version: Literal["000"] = "000"

0 comments on commit d479111

Please sign in to comment.