report
Reportable
Bases: Protocol
__str__()
abstractmethod
Return a string representation.
Source code in src/flowcean/core/report.py
6 7 8 9 |
|
Report(entries)
A report containing reportables.
Initialize the report.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
entries
|
dict[str, Reportable]
|
The report entries. |
required |
Source code in src/flowcean/core/report.py
15 16 17 18 19 20 21 |
|
__str__()
Return a string representation of the report.
Source code in src/flowcean/core/report.py
23 24 25 26 27 |
|