orionis 0.555.0__py3-none-any.whl → 0.557.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- orionis/console/contracts/executor.py +3 -3
- orionis/metadata/framework.py +1 -1
- {orionis-0.555.0.dist-info → orionis-0.557.0.dist-info}/METADATA +1 -1
- {orionis-0.555.0.dist-info → orionis-0.557.0.dist-info}/RECORD +7 -7
- {orionis-0.555.0.dist-info → orionis-0.557.0.dist-info}/WHEEL +0 -0
- {orionis-0.555.0.dist-info → orionis-0.557.0.dist-info}/licenses/LICENCE +0 -0
- {orionis-0.555.0.dist-info → orionis-0.557.0.dist-info}/top_level.txt +0 -0
@@ -3,7 +3,7 @@ from abc import ABC, abstractmethod
|
|
3
3
|
class IExecutor(ABC):
|
4
4
|
|
5
5
|
@abstractmethod
|
6
|
-
def running(self, program: str, time: str = ''):
|
6
|
+
def running(self, program: str, time: str = '') -> None:
|
7
7
|
"""
|
8
8
|
Logs the execution of a program in a "RUNNING" state with console output formatting.
|
9
9
|
|
@@ -33,7 +33,7 @@ class IExecutor(ABC):
|
|
33
33
|
pass
|
34
34
|
|
35
35
|
@abstractmethod
|
36
|
-
def done(self, program: str, time: str = ''):
|
36
|
+
def done(self, program: str, time: str = '') -> None:
|
37
37
|
"""
|
38
38
|
Logs the execution of a program in a "DONE" state with console output formatting.
|
39
39
|
|
@@ -63,7 +63,7 @@ class IExecutor(ABC):
|
|
63
63
|
pass
|
64
64
|
|
65
65
|
@abstractmethod
|
66
|
-
def fail(self, program: str, time: str = ''):
|
66
|
+
def fail(self, program: str, time: str = '') -> None:
|
67
67
|
"""
|
68
68
|
Logs the execution of a program in a "FAIL" state with console output formatting.
|
69
69
|
|
orionis/metadata/framework.py
CHANGED
@@ -26,7 +26,7 @@ orionis/console/contracts/command.py,sha256=BOfRGpLRMsRS_a58584uO-MPK1UZGkmefLbF
|
|
26
26
|
orionis/console/contracts/console.py,sha256=phaQhCLWa81MLzB5ydOSaUfEIdDq7fOjvym8Rmi-arc,11908
|
27
27
|
orionis/console/contracts/debug.py,sha256=tEdF3_HJwDAgccXVEk_LGf43Am2ylbcx9i0Qvj3MFyU,1011
|
28
28
|
orionis/console/contracts/event.py,sha256=Iu03z04ujkiYl6DksYT8QVXSJGabd5T_5dT67UozeCw,119978
|
29
|
-
orionis/console/contracts/executor.py,sha256=
|
29
|
+
orionis/console/contracts/executor.py,sha256=JAzK64_5HfIGm3_BwsUv7-ZeC2Y-3mpxOByHaXwuy9A,4278
|
30
30
|
orionis/console/contracts/kernel.py,sha256=mh4LlhEYHh3FuGZZQ0GBhD6ZLa5YQvaNj2r01IIHI5Y,826
|
31
31
|
orionis/console/contracts/progress_bar.py,sha256=NYebL2h-vg2t2H6IhJjuC37gglRkpT-MW71wbJtpLNg,1784
|
32
32
|
orionis/console/contracts/reactor.py,sha256=iT6ShoCutAWEeJzOf_PK7CGXi9TgrOD5tewHFVQ2NQw,6075
|
@@ -241,7 +241,7 @@ orionis/foundation/providers/scheduler_provider.py,sha256=1do4B09bU_6xbFHHVYYTGM
|
|
241
241
|
orionis/foundation/providers/testing_provider.py,sha256=SrJRpdvcblx9WvX7x9Y3zc7OQfiTf7la0HAJrm2ESlE,3725
|
242
242
|
orionis/foundation/providers/workers_provider.py,sha256=oa_2NIDH6UxZrtuGkkoo_zEoNIMGgJ46vg5CCgAm7wI,3926
|
243
243
|
orionis/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
244
|
-
orionis/metadata/framework.py,sha256=
|
244
|
+
orionis/metadata/framework.py,sha256=RQ4agNxpsazx_Td73E8ghWtwfOnv5750nl2Z6AuVObM,4109
|
245
245
|
orionis/metadata/package.py,sha256=k7Yriyp5aUcR-iR8SK2ec_lf0_Cyc-C7JczgXa-I67w,16039
|
246
246
|
orionis/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
247
247
|
orionis/services/asynchrony/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -433,8 +433,8 @@ orionis/test/validators/web_report.py,sha256=n9BfzOZz6aEiNTypXcwuWbFRG0OdHNSmCNu
|
|
433
433
|
orionis/test/validators/workers.py,sha256=rWcdRexINNEmGaO7mnc1MKUxkHKxrTsVuHgbnIfJYgc,1206
|
434
434
|
orionis/test/view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
435
435
|
orionis/test/view/render.py,sha256=f-zNhtKSg9R5Njqujbg2l2amAs2-mRVESneLIkWOZjU,4082
|
436
|
-
orionis-0.
|
437
|
-
orionis-0.
|
438
|
-
orionis-0.
|
439
|
-
orionis-0.
|
440
|
-
orionis-0.
|
436
|
+
orionis-0.557.0.dist-info/licenses/LICENCE,sha256=JhC-z_9mbpUrCfPjcl3DhDA8trNDMzb57cvRSam1avc,1463
|
437
|
+
orionis-0.557.0.dist-info/METADATA,sha256=zY-SubOPOeSYTgRnOo89KaaVMibP2uSM9YShT0K8NTw,4801
|
438
|
+
orionis-0.557.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
439
|
+
orionis-0.557.0.dist-info/top_level.txt,sha256=lyXi6jArpqJ-0zzNqd_uwsH-z9TCEBVBL-pC3Ekv7hU,8
|
440
|
+
orionis-0.557.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|