mirror of https://gitlab.com/bashrc2/epicyon
Check following is a dict
parent
7aea1105e6
commit
26d25c5067
|
@ -1213,6 +1213,10 @@ def _desktopShowFollowing(followingJson: {}, translate: {},
|
||||||
followType='following') -> None:
|
followType='following') -> None:
|
||||||
"""Shows a page of accounts followed
|
"""Shows a page of accounts followed
|
||||||
"""
|
"""
|
||||||
|
if not isinstance(followingJson, dict):
|
||||||
|
return
|
||||||
|
if not followingJson.get('orderedItems'):
|
||||||
|
return
|
||||||
if not followingJson['orderedItems']:
|
if not followingJson['orderedItems']:
|
||||||
return
|
return
|
||||||
print('')
|
print('')
|
||||||
|
|
Loading…
Reference in New Issue