listpick 0.1.13.56__py3-none-any.whl → 0.1.13.57__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.
- listpick/listpick_app.py +8 -0
- {listpick-0.1.13.56.dist-info → listpick-0.1.13.57.dist-info}/METADATA +1 -1
- {listpick-0.1.13.56.dist-info → listpick-0.1.13.57.dist-info}/RECORD +7 -7
- {listpick-0.1.13.56.dist-info → listpick-0.1.13.57.dist-info}/WHEEL +0 -0
- {listpick-0.1.13.56.dist-info → listpick-0.1.13.57.dist-info}/entry_points.txt +0 -0
- {listpick-0.1.13.56.dist-info → listpick-0.1.13.57.dist-info}/licenses/LICENSE.txt +0 -0
- {listpick-0.1.13.56.dist-info → listpick-0.1.13.57.dist-info}/top_level.txt +0 -0
listpick/listpick_app.py
CHANGED
|
@@ -658,6 +658,14 @@ class Picker:
|
|
|
658
658
|
self.stdscr.refresh()
|
|
659
659
|
|
|
660
660
|
def draw_screen(self, indexed_items: list[Tuple[int, list[str]]], highlights: list[dict] = [{}], clear: bool = True) -> None:
|
|
661
|
+
""" Try-except wrapper for the draw_screen_ function. """
|
|
662
|
+
try:
|
|
663
|
+
self.draw_screen_(self.indexed_items, self.highlights)
|
|
664
|
+
except Exception as e:
|
|
665
|
+
self.logger.warning(f"self.draw_screen_() error. {e}")
|
|
666
|
+
pass
|
|
667
|
+
|
|
668
|
+
def draw_screen_(self, indexed_items: list[Tuple[int, list[str]]], highlights: list[dict] = [{}], clear: bool = True) -> None:
|
|
661
669
|
""" Draw Picker screen. """
|
|
662
670
|
self.logger.debug("Draw screen.")
|
|
663
671
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
listpick/__init__.py,sha256=ExXc97-bibodH--wlwpQivl0zCNR5D1hvpvrf7OBofU,154
|
|
2
2
|
listpick/__main__.py,sha256=wkCjDdqw093W27yWwnlC3nG_sMRKaIad7hHHWy0RBgY,193
|
|
3
|
-
listpick/listpick_app.py,sha256=
|
|
3
|
+
listpick/listpick_app.py,sha256=nF4NTNqOb-cxvNG2sP4TbcA7m5g1P3dCqpeS9ZP-QWM,161953
|
|
4
4
|
listpick/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
5
|
listpick/ui/build_help.py,sha256=_rVKKrX3HfFJtw-pyeNb2lQWbml4-AAw8sZIUYGn97Y,8731
|
|
6
6
|
listpick/ui/footer.py,sha256=s1L68MNmhWwbWRy0mn0ChmnE_dMQBAzNlTv917pyHE0,10673
|
|
@@ -23,9 +23,9 @@ listpick/utils/searching.py,sha256=Xk5UIqamNHL2L90z3ACB_Giqdpi9iRKoAJ6pKaqaD7Q,3
|
|
|
23
23
|
listpick/utils/sorting.py,sha256=WZZiVlVA3Zkcpwji3U5SNFlQ14zVEk3cZJtQirBkecQ,5329
|
|
24
24
|
listpick/utils/table_to_list_of_lists.py,sha256=T-i-nV1p6g8UagdgUPKrhIGpKY_YXZDxf4xZzcPepNA,7635
|
|
25
25
|
listpick/utils/utils.py,sha256=8nsjjTDQH13tHTU93YcKklLQ_uuMAz-rbDTmao83T4Q,12783
|
|
26
|
-
listpick-0.1.13.
|
|
27
|
-
listpick-0.1.13.
|
|
28
|
-
listpick-0.1.13.
|
|
29
|
-
listpick-0.1.13.
|
|
30
|
-
listpick-0.1.13.
|
|
31
|
-
listpick-0.1.13.
|
|
26
|
+
listpick-0.1.13.57.dist-info/licenses/LICENSE.txt,sha256=2mP-MRHJptADDNE9VInMNg1tE-C6Qv93Z4CCQKrpg9w,1061
|
|
27
|
+
listpick-0.1.13.57.dist-info/METADATA,sha256=78uDTAuXg1RZq4D7k_9SVZY9nb_dEUlO_k1ELe_nHhM,7988
|
|
28
|
+
listpick-0.1.13.57.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
29
|
+
listpick-0.1.13.57.dist-info/entry_points.txt,sha256=-QCf_BKIkUz35Y9nkYpjZWs2Qg0KfRna2PAs5DnF6BE,43
|
|
30
|
+
listpick-0.1.13.57.dist-info/top_level.txt,sha256=5mtsGEz86rz3qQDe0D463gGjAfSp6A3EWg4J4AGYr-Q,9
|
|
31
|
+
listpick-0.1.13.57.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|