|
@@ -40,7 +40,7 @@ except:
|
|
|
from mock import *
|
|
|
|
|
|
dark_palette = [
|
|
|
- ("popup_focus", "black", "light red"),
|
|
|
+ ('popup_focus', 'black', 'light red'),
|
|
|
('popup', 'black', 'dark red'),
|
|
|
('banner', 'light gray', 'dark red'),
|
|
|
('streak', 'light red', 'black'),
|
|
@@ -48,7 +48,7 @@ dark_palette = [
|
|
|
]
|
|
|
|
|
|
light_palette = [
|
|
|
- ("popup_focus", "black", "light gray"),
|
|
|
+ ('popup_focus', 'black', 'light gray'),
|
|
|
('popup', 'dark gray', 'white'),
|
|
|
('banner', 'light gray', 'dark red'),
|
|
|
('streak', 'white', 'dark blue'),
|
|
@@ -153,7 +153,7 @@ class GroceryTransactionEditor(urwid.WidgetPlaceholder):
|
|
|
|
|
|
|
|
|
self.cur.execute(line)
|
|
|
-
|
|
|
+
|
|
|
if None not in (date, store):
|
|
|
txn.apply_choice('ts', date)
|
|
|
txn.apply_choice('store', store)
|
|
@@ -162,20 +162,20 @@ class GroceryTransactionEditor(urwid.WidgetPlaceholder):
|
|
|
self.activity_manager.show(txn.update())
|
|
|
|
|
|
self.log = self.open(log)
|
|
|
-
|
|
|
+
|
|
|
def _open(self, log):
|
|
|
with open(log, 'a') as f:
|
|
|
yield f
|
|
|
-
|
|
|
+
|
|
|
def open(self, log):
|
|
|
self._to_close = self._open(log)
|
|
|
return next(self._to_close)
|
|
|
-
|
|
|
+
|
|
|
def close(self):
|
|
|
if self._to_close is not None:
|
|
|
self._to_close.close()
|
|
|
self._to_close = None
|
|
|
-
|
|
|
+
|
|
|
def save(self, data):
|
|
|
ts = data['ts']
|
|
|
store = data['store']
|
|
@@ -224,7 +224,7 @@ try:
|
|
|
)
|
|
|
|
|
|
loop.run()
|
|
|
-
|
|
|
+
|
|
|
finally:
|
|
|
if app is not None:
|
|
|
app.close()
|