From: Sergey Matveev Date: Sat, 30 Nov 2024 15:35:49 +0000 (+0300) Subject: Unify quotes usage X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=ccebd6e38d32d6171bd5dca7aeaaba4cb918e0485ec244ee2bf159bb19dc030c;p=keks.git Unify quotes usage --- diff --git a/pyac/tests/test_tai.py b/pyac/tests/test_tai.py index 034b250..9fd24f4 100644 --- a/pyac/tests/test_tai.py +++ b/pyac/tests/test_tai.py @@ -139,9 +139,9 @@ class TestTAI64(unittest.TestCase): def test_decode_leapsecond(self) -> None: for leapsec in DJB_Leapsecs: - decoded, remaining = loads(v=b'\x18' + bytes.fromhex(leapsec), leapsecUTCAllow=True) + decoded, remaining = loads(v=b"\x18" + bytes.fromhex(leapsec), leapsecUTCAllow=True) self.assertIsInstance(decoded, datetime) - decoded, remaining = loads(v=b'\x18' + bytes.fromhex(leapsec), leapsecUTCAllow=False) + decoded, remaining = loads(v=b"\x18" + bytes.fromhex(leapsec), leapsecUTCAllow=False) self.assertIsInstance(decoded, Raw)