mirror of
https://gitea.phreedom.club/localhost_frssoft/funkwlmpv
synced 2025-05-04 02:48:40 +00:00
autopep8 fixes
This commit is contained in:
parent
6c5113abcc
commit
86bbdcf0ea
14 changed files with 215 additions and 166 deletions
|
@ -21,7 +21,8 @@ def libraries(pg=None):
|
|||
lib_name = lib_i.get('name')
|
||||
lib_by = lib_i.get('actor').get('full_username')
|
||||
libraries_listing.append(f'{index}.{lib_name} | by {lib_by}')
|
||||
lib_select = fzf.prompt(libraries_listing, f'--header=\'found {libs_count} libraries\'')[0].split('.', 1)
|
||||
lib_select = fzf.prompt(
|
||||
libraries_listing, f'--header=\'found {libs_count} libraries\'')[0].split('.', 1)
|
||||
if lib_select[0] == 'Next':
|
||||
libraries(pg=libs_next)
|
||||
elif lib_select[0] == 'Prev':
|
||||
|
@ -31,4 +32,3 @@ def libraries(pg=None):
|
|||
lib_name = lib_select[1]
|
||||
lib_uuid = libs[int(lib_addr)].get('uuid')
|
||||
return None, 'library', lib_name, lib_uuid
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue