-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
48baac8
commit 7596eb8
Showing
20 changed files
with
6,027 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# generated by datamodel-codegen: | ||
# filename: pi_state.json | ||
# timestamp: 2022-09-27T14:37:49+00:00 | ||
|
||
from __future__ import annotations | ||
|
||
from hydrolib.core.io.rtc.basemodel import RtcBaseModel | ||
from pydantic import Field | ||
|
||
from . import StateComplexType | ||
|
||
|
||
class State(RtcBaseModel): | ||
__root__: StateComplexType = Field( | ||
..., | ||
description='A state consists of a number of locations.\n from which FFS reads and writes the model state data.\n A such reading is reading by the FFS and writing is writing by the FFS. ', | ||
) |
Oops, something went wrong.