pyegeria 0.7.20__py3-none-any.whl → 0.7.21__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.
- examples/widgets/cat/list_todos.py +1 -1
- examples/widgets/my/monitor_open_todos.py +1 -1
- examples/widgets/my/todo_actions.py +0 -2
- {pyegeria-0.7.20.dist-info → pyegeria-0.7.21.dist-info}/METADATA +1 -1
- {pyegeria-0.7.20.dist-info → pyegeria-0.7.21.dist-info}/RECORD +8 -8
- {pyegeria-0.7.20.dist-info → pyegeria-0.7.21.dist-info}/LICENSE +0 -0
- {pyegeria-0.7.20.dist-info → pyegeria-0.7.21.dist-info}/WHEEL +0 -0
- {pyegeria-0.7.20.dist-info → pyegeria-0.7.21.dist-info}/entry_points.txt +0 -0
@@ -96,7 +96,7 @@ def display_to_dos(search_string: str, status_filter: str, server: str, url: str
|
|
96
96
|
status = props.get("toDoStatus")
|
97
97
|
|
98
98
|
assigned_out = ''
|
99
|
-
assigned_actors = item
|
99
|
+
assigned_actors = item.get("assignedActors",'---')
|
100
100
|
if type(assigned_actors) is list:
|
101
101
|
assigned_md = ''
|
102
102
|
for actor in assigned_actors:
|
@@ -95,7 +95,7 @@ def display_todos(server: str , url: str, user: str, user_pass:str,
|
|
95
95
|
priority = str(props.get("priority", " "))
|
96
96
|
due = props.get("dueTime", " ")
|
97
97
|
completed = props.get("completionTime", " ")
|
98
|
-
status = props.get("
|
98
|
+
status = props.get("todoStatus")
|
99
99
|
# assigned_actors = item["assignedActors"]
|
100
100
|
# sponsor = assigned_actors[0].get("uniqueName", " ")
|
101
101
|
sponsor = "erinoverview"
|
@@ -142,7 +142,6 @@ def change_todo_status(server, url, userid, password, timeout, todo_guid, new_st
|
|
142
142
|
@click.option('--password', default=EGERIA_USER_PASSWORD, help='Egeria user password')
|
143
143
|
@click.option('--timeout', default=60, help='Number of seconds to wait')
|
144
144
|
@click.argument('todo-guid')
|
145
|
-
@click.pass_context
|
146
145
|
def mark_todo_complete(server, url, userid, password, timeout, todo_guid):
|
147
146
|
"""Mark the specified todo as complete"""
|
148
147
|
try:
|
@@ -173,7 +172,6 @@ def mark_todo_complete(server, url, userid, password, timeout, todo_guid):
|
|
173
172
|
@click.option('--timeout', default=60, help='Number of seconds to wait')
|
174
173
|
@click.argument('todo-guid')
|
175
174
|
@click.argument('new-actor-guid')
|
176
|
-
@click.pass_context
|
177
175
|
def reassign_todo(server, url, userid, password, timeout, todo_guid, new_actor_guid):
|
178
176
|
"""Reassign ToDo item to new actor"""
|
179
177
|
m_client = MyProfile(server, url, user_id=userid, user_pwd=password)
|
@@ -14,7 +14,7 @@ examples/widgets/cat/list_glossary.py,sha256=zljSzVKYysFZVmVhHJt0fYFDmAG9azIphOs
|
|
14
14
|
examples/widgets/cat/list_projects.py,sha256=jP6HoVqGi-w4R1itgdAW1zamPLsgkvjvh8reRj0v10Q,7432
|
15
15
|
examples/widgets/cat/list_relationships.py,sha256=lRfnsMUc0KN6Gb3qJoHjAwYGrcvTk3oqQRxln1as9u8,5623
|
16
16
|
examples/widgets/cat/list_tech_types.py,sha256=20T4v6L5qeebSsaL1nGkFMDAIsy2W3A3SMm1RcgFoh0,4609
|
17
|
-
examples/widgets/cat/list_todos.py,sha256=
|
17
|
+
examples/widgets/cat/list_todos.py,sha256=n02XbTX8sMLmCmTFG0N0C1i_nz7WRCwt02fgYyLocEA,6276
|
18
18
|
examples/widgets/cat/list_user_ids.py,sha256=Nci_3KpLWj3Hcq8mbVcIe-cirV_T5C8A4blMb2iwbss,4232
|
19
19
|
examples/widgets/cli/__init__.py,sha256=6d_R0KZBNnJy9EBz9J2xvGFlx-3j_ZPqPCxKgdvYeDQ,291
|
20
20
|
examples/widgets/cli/egeria.py,sha256=Jo1PlADWrjqFVo_ZduEECF-9-wSlJrBYsdM5_MNI0rc,26011
|
@@ -28,9 +28,9 @@ examples/widgets/my/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
|
|
28
28
|
examples/widgets/my/list_my_profile.py,sha256=zKNjG7iE0NNihnTv1ot1vodEJ321N-gfR6eTyHTWCQM,5479
|
29
29
|
examples/widgets/my/list_my_roles.py,sha256=DCiNdnoHXQueUE5g73D3oRXfJ6LaUQGbibNtDRdicR8,5078
|
30
30
|
examples/widgets/my/monitor_my_todos.py,sha256=2INaUuKE5obKysoGzJLPUpc-oRJvQsx8_qoGtv_eBDI,6405
|
31
|
-
examples/widgets/my/monitor_open_todos.py,sha256=
|
31
|
+
examples/widgets/my/monitor_open_todos.py,sha256=y7cmDe2r7O9xmIo-aFo3gQIgHrK7ZGsPjbSsHlJpiO8,5400
|
32
32
|
examples/widgets/my/my_profile_actions.py,sha256=SrlC0PSix0b78MCWJdGJAVgai8gbJmYyz1ou2ZVOkIs,3949
|
33
|
-
examples/widgets/my/todo_actions.py,sha256=
|
33
|
+
examples/widgets/my/todo_actions.py,sha256=a9A0ZJ_Y8zZ15Pdy6Dd5M1JZKS4-SHyiJcD_W7R8SFQ,8241
|
34
34
|
examples/widgets/ops/README.md,sha256=PJsSDcvMv6E6og6y-cwvxFX5lhCII0UCwgKiM1T17MQ,1595
|
35
35
|
examples/widgets/ops/__init__.py,sha256=SCfzF3-aMx8EpqLWmH7JQf13gTmMAtHRbg69oseLvi8,480
|
36
36
|
examples/widgets/ops/engine_actions.py,sha256=i0-_wRJqdKARwnEwPQMJvr5bVEGi2WE9Np0_A-o6k3A,2978
|
@@ -86,8 +86,8 @@ pyegeria/runtime_manager_omvs.py,sha256=oSVFeG_yBGXIvQR0EClLZqTZ6C5z5ReZzwm8cce8
|
|
86
86
|
pyegeria/server_operations.py,sha256=1z2wZLdrNZG6HlswY_Eh8qI1mlcjsQ59zO-AMy9XbUU,16605
|
87
87
|
pyegeria/utils.py,sha256=pkVmS3RrbjaS9yz7FtOCwaOfV5FMqz-__Rt5koCnd9c,5374
|
88
88
|
pyegeria/valid_metadata_omvs.py,sha256=aisdRodIwJSkyArAzfm_sEnBELh69xE8k4Nea-vHu8M,36745
|
89
|
-
pyegeria-0.7.
|
90
|
-
pyegeria-0.7.
|
91
|
-
pyegeria-0.7.
|
92
|
-
pyegeria-0.7.
|
93
|
-
pyegeria-0.7.
|
89
|
+
pyegeria-0.7.21.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
90
|
+
pyegeria-0.7.21.dist-info/METADATA,sha256=yLOlSQCkekIgiVrvXqqSqYnR9V0bwyhZfaL3a34RcSU,2775
|
91
|
+
pyegeria-0.7.21.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
92
|
+
pyegeria-0.7.21.dist-info/entry_points.txt,sha256=22oy5-EM37ldb_-MPtiJygwXU217h8vb2_zT-7vn-yc,3571
|
93
|
+
pyegeria-0.7.21.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|