Browse Source
Rename DoraStatus.OK to CONTINUE to be consistent
Co-authored-by: Xavier Tao <tao.xavier@outlook.com>
tags/v0.0.0-test.4
Philipp Oppermann
GitHub
3 years ago
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
examples/python-operator/op.py
|
|
|
@@ -2,7 +2,7 @@ from typing import Callable |
|
|
|
from enum import Enum |
|
|
|
|
|
|
|
class DoraStatus(Enum): |
|
|
|
OK = 0 |
|
|
|
CONTINUE = 0 |
|
|
|
ERR = -1 |
|
|
|
STOP = 1 |
|
|
|
|
|
|
|
|