We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 906f3f4 commit 286b386Copy full SHA for 286b386
hh_creator/text.py
@@ -158,7 +158,7 @@ def action(self, value):
158
timer.timeout.connect(lambda: self.stack_item.setVisible(True))
159
timer.timeout.connect(lambda: self.action_item.setVisible(False))
160
timer.timeout.connect(
161
- lambda: log.debug(f"end:{time.time()} ({time.time()-start})")
+ lambda: log.debug(f"end:{time.time()} ({time.time() - start})")
162
)
163
timer.start(config.config["animation"].getint("LAST_ACTION_DURATION"))
164
test/test_util.py
@@ -2,6 +2,7 @@
2
3
import hh_creator.util as ut
4
5
+
6
def test_format_amount():
7
assert ut.amount_format(Decimal("1.325"), 3) == "1.325"
8
assert ut.amount_format(2, 3) == "2"
0 commit comments