From 9270c8018f96357664330a7ccfc72a2e95a3ea5a Mon Sep 17 00:00:00 2001 From: Matus Valo Date: Tue, 5 Mar 2019 01:33:36 -0800 Subject: Fix flake8 --- t/unit/test_serialization.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 't/unit/test_serialization.py') diff --git a/t/unit/test_serialization.py b/t/unit/test_serialization.py index 039737b..74412d1 100644 --- a/t/unit/test_serialization.py +++ b/t/unit/test_serialization.py @@ -73,8 +73,8 @@ class test_serialization: loads('y', 'asdsad', 0) def test_float(self): - assert (int(loads(b'fb', dumps(b'fb', [32.31, False]), 0)[0][0] * 100) == - 3231) + data = int(loads(b'fb', dumps(b'fb', [32.31, False]), 0)[0][0] * 100) + assert(data == 3231) def test_table(self): table = { -- cgit v1.2.1