chg: removed whitespaces.

This commit is contained in:
iceman1001 2018-01-09 19:17:21 +01:00
commit 1b61e01f0e
5 changed files with 11 additions and 11 deletions

View file

@ -11,7 +11,7 @@ import pm3_eml2mfd, pm3_mfd2eml
class TestEmlMfd(unittest.TestCase):
def setUp(self):
self.tmpdir = mkdtemp()
def tearDown(self):
rmtree(self.tmpdir)
@ -46,7 +46,7 @@ def hex_c14n(inp):
"""
Canonicalizes the input string by removing non-hexadecimal
characters and making everything uppercase
"""
"""
return ''.join(c.upper() for c in inp if c in hexdigits)
if __name__ == '__main__':