From f9fc74f216ebc613370b1b24a3e8ce935847b06c Mon Sep 17 00:00:00 2001 From: Julian Andres Klode Date: Thu, 11 Jun 2015 19:44:34 +0200 Subject: tests/test_large_file.py: make pep8 happy The spacing around the ** operator looks ugly, and that's fixed in pep8 1.6.0, but we only have 1.5.7. Gbp-Dch: ignore --- tests/test_large_file.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_large_file.py b/tests/test_large_file.py index 2e873131..852c8579 100644 --- a/tests/test_large_file.py +++ b/tests/test_large_file.py @@ -5,7 +5,8 @@ import unittest import apt_inst -IS_NOT_32BIT = sys.maxsize > 2**32 +IS_NOT_32BIT = sys.maxsize > 2 ** 32 + @unittest.skipIf(IS_NOT_32BIT, "Large File support is for 32 bit systems") class testHashes(unittest.TestCase): -- cgit v1.2.3