Commit a3521701 authored by BO ZHANG's avatar BO ZHANG 🏀
Browse files

update CsstStatus example

parent ceb12b0b
Pipeline #2526 failed with stage
in 0 seconds
...@@ -8,6 +8,7 @@ Modified-History: ...@@ -8,6 +8,7 @@ Modified-History:
2022-10-04, Bo Zhang, created 2022-10-04, Bo Zhang, created
2022-10-04, Bo Zhang, added CsstStatus 2022-10-04, Bo Zhang, added CsstStatus
2022-10-07, Bo Zhang, added Numpydoc docstring 2022-10-07, Bo Zhang, added Numpydoc docstring
2023-12-19, Bo Zhang, updated example
""" """
from enum import IntEnum from enum import IntEnum
from typing import Optional, Any from typing import Optional, Any
...@@ -22,16 +23,15 @@ class CsstStatus(IntEnum): ...@@ -22,16 +23,15 @@ class CsstStatus(IntEnum):
Examples Examples
-------- --------
>>> def f(num): >>> CsstStatus(0) # SUCCESS
>>> if num > 0: >>> CsstStatus(1) # WARNING
>>> return CsstStatus.PERFECT >>> CsstStatus(2) # ERROR
>>> return CsstStatus.ERROR
""" """
# status list to be completed
PERFECT = 0 PERFECT = 0
WARNING = 1 WARNING = 1
ERROR = 2 ERROR = 2
# status list to be completed
class CsstResult: class CsstResult:
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment