From 0f6984c63e46e6eb3fe483bc0bdb56fb7463874b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BD=D0=B4=D1=80=D0=B5=D0=B9=20=D0=92=D0=BB=D0=B0?= =?UTF-8?q?=D0=B4=D0=B8=D0=BC=D0=B8=D1=80=D0=BE=D0=B2=D0=B8=D1=87?= Date: Sat, 27 Feb 2016 19:28:46 +0300 Subject: [PATCH] del converting from util --- src/util.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/util.py b/src/util.py index 211bb40..bc6adbd 100644 --- a/src/util.py +++ b/src/util.py @@ -9,15 +9,6 @@ def log(data): fl.write(str(data)) -def string_to_bin(tox_id): - return tox_id.decode('hex') - - -def bin_to_string(raw_id): - res = ''.join('{:02x}'.format(ord(x)) for x in raw_id) - return res.upper() - - def curr_directory(): return os.path.dirname(os.path.realpath(__file__))