orionis 0.721.0__py3-none-any.whl → 0.723.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/output/console.py +10 -2
- orionis/metadata/framework.py +1 -1
- orionis/support/strings/__init__.py +0 -0
- {orionis-0.721.0.dist-info → orionis-0.723.0.dist-info}/METADATA +1 -1
- {orionis-0.721.0.dist-info → orionis-0.723.0.dist-info}/RECORD +8 -7
- {orionis-0.721.0.dist-info → orionis-0.723.0.dist-info}/WHEEL +0 -0
- {orionis-0.721.0.dist-info → orionis-0.723.0.dist-info}/licenses/LICENCE +0 -0
- {orionis-0.721.0.dist-info → orionis-0.723.0.dist-info}/top_level.txt +0 -0
|
@@ -505,7 +505,7 @@ class Console(IConsole):
|
|
|
505
505
|
|
|
506
506
|
return choices[int(answer) - 1]
|
|
507
507
|
|
|
508
|
-
def exception(self, e) -> None:
|
|
508
|
+
def exception(self, e: Exception) -> None:
|
|
509
509
|
"""
|
|
510
510
|
Prints an exception message with detailed information.
|
|
511
511
|
|
|
@@ -519,7 +519,15 @@ class Console(IConsole):
|
|
|
519
519
|
This method prints the exception type, message, and a detailed stack trace.
|
|
520
520
|
"""
|
|
521
521
|
rc = RichConsole()
|
|
522
|
-
tb = Traceback.from_exception(
|
|
522
|
+
tb = Traceback.from_exception(
|
|
523
|
+
type(e),
|
|
524
|
+
e,
|
|
525
|
+
e.__traceback__,
|
|
526
|
+
max_frames=1,
|
|
527
|
+
suppress=[],
|
|
528
|
+
extra_lines=1,
|
|
529
|
+
show_locals=False
|
|
530
|
+
)
|
|
523
531
|
rc.print(tb)
|
|
524
532
|
|
|
525
533
|
def exitSuccess(self, message: str = None) -> None:
|
orionis/metadata/framework.py
CHANGED
|
File without changes
|
|
@@ -58,7 +58,7 @@ orionis/console/fluent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3
|
|
|
58
58
|
orionis/console/fluent/command.py,sha256=0jyhB45LIjDS7nkjNhkkvEXEzdOBmT49qKIooYY_DbI,8261
|
|
59
59
|
orionis/console/fluent/event.py,sha256=N1MqKdXwmsHx3KES07DVCLVrdwaIMWYAtzUzQmsfsAI,166739
|
|
60
60
|
orionis/console/output/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
61
|
-
orionis/console/output/console.py,sha256=
|
|
61
|
+
orionis/console/output/console.py,sha256=xRZXSZiVqlyc1L16MBUV1M3TUHQwrWSFYUtisivm8U8,24423
|
|
62
62
|
orionis/console/output/executor.py,sha256=uQjFPOlyZLFj9pcyYPugCqxwJog0AJgK1OcmQH2ELbw,7314
|
|
63
63
|
orionis/console/request/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
64
64
|
orionis/console/request/cli_request.py,sha256=sH7Q2MpMIasiPiEPBeGhExnbfpSic98vQdAKvG9cgew,9071
|
|
@@ -207,7 +207,7 @@ orionis/foundation/providers/scheduler_provider.py,sha256=IrPQJwvQVLRm5Qnz0Cxon4
|
|
|
207
207
|
orionis/foundation/providers/testing_provider.py,sha256=eI1p2lUlxl25b5Z487O4nmqLE31CTDb4c3Q21xFadkE,1615
|
|
208
208
|
orionis/foundation/providers/workers_provider.py,sha256=GdHENYV_yGyqmHJHn0DCyWmWId5xWjD48e6Zq2PGCWY,1674
|
|
209
209
|
orionis/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
210
|
-
orionis/metadata/framework.py,sha256=
|
|
210
|
+
orionis/metadata/framework.py,sha256=6ZwXYv9i69xEEfvVdpvhwF9lmOQift4OSOi0QaVmxNw,4689
|
|
211
211
|
orionis/metadata/package.py,sha256=s1JeGJPwdVh4jO3IOfmpwMuJ_oX6Vf9NL7jgPEQNf5Y,16050
|
|
212
212
|
orionis/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
213
213
|
orionis/services/asynchrony/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -344,6 +344,7 @@ orionis/support/standard/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQe
|
|
|
344
344
|
orionis/support/standard/contracts/std.py,sha256=SJ44qIFDCp4jHL18k4sji5Mt_MN16lpg-0ku1qudh04,3331
|
|
345
345
|
orionis/support/standard/exceptions/__init__.py,sha256=GovJ24C8fCOlnU5_TrMJKngYNcJ1rvJnF9WFTA8ktyw,96
|
|
346
346
|
orionis/support/standard/exceptions/standard.py,sha256=BM0VHLRYD7SzoMJkaA7BxY5280v81hlj1Xslu0UaFag,788
|
|
347
|
+
orionis/support/strings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
347
348
|
orionis/support/strings/stringable.py,sha256=6Kx1tXULZX_Mjoha3_-RQfVD35RA7WbWTKjdVDv84ow,93981
|
|
348
349
|
orionis/support/structures/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
349
350
|
orionis/support/structures/collection.py,sha256=1yD-NI5kCh3ve_4V9OE1sdK4OQ__wkBbEhmKQWkHGGA,37694
|
|
@@ -401,8 +402,8 @@ orionis/test/validators/workers.py,sha256=HcZ3cnrk6u7cvM1xZpn_lsglHAq69_jx9RcTSv
|
|
|
401
402
|
orionis/test/view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
402
403
|
orionis/test/view/render.py,sha256=arysoswhkV2vUd2aVMZRPpmH317jaWbgjDpQ_AWQ5AE,5663
|
|
403
404
|
orionis/test/view/report.stub,sha256=QLqqCdRoENr3ECiritRB3DO_MOjRQvgBh5jxZ3Hs1r0,28189
|
|
404
|
-
orionis-0.
|
|
405
|
-
orionis-0.
|
|
406
|
-
orionis-0.
|
|
407
|
-
orionis-0.
|
|
408
|
-
orionis-0.
|
|
405
|
+
orionis-0.723.0.dist-info/licenses/LICENCE,sha256=JhC-z_9mbpUrCfPjcl3DhDA8trNDMzb57cvRSam1avc,1463
|
|
406
|
+
orionis-0.723.0.dist-info/METADATA,sha256=BfOstvuTtWjlGl-F1eZ_afeyM7jTP8VcPzh2x_nCtf8,4931
|
|
407
|
+
orionis-0.723.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
408
|
+
orionis-0.723.0.dist-info/top_level.txt,sha256=lyXi6jArpqJ-0zzNqd_uwsH-z9TCEBVBL-pC3Ekv7hU,8
|
|
409
|
+
orionis-0.723.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|