From fc45e1215d42554dd10c6bf8bc62384a03a40a22 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Thu, 22 Feb 2018 18:52:58 -0500 Subject: [PATCH] Rename as pager mod --- piker/ui/{kb.py => pager.py} | 0 piker/ui/watchlist.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename piker/ui/{kb.py => pager.py} (100%) diff --git a/piker/ui/kb.py b/piker/ui/pager.py similarity index 100% rename from piker/ui/kb.py rename to piker/ui/pager.py diff --git a/piker/ui/watchlist.py b/piker/ui/watchlist.py index 5019b414..4a876a96 100644 --- a/piker/ui/watchlist.py +++ b/piker/ui/watchlist.py @@ -21,7 +21,7 @@ from kivy.core.window import Window from ..calc import humanize, percent_change from ..log import get_logger -from .kb import PagerView +from .pager import PagerView log = get_logger('watchlist')