1
0
mirror of https://github.com/gryf/ebook-converter.git synced 2026-04-01 18:03:35 +02:00

Removed int_to_byte function

This commit is contained in:
2020-07-05 17:12:00 +02:00
parent ed146c53c9
commit 210dd77e5f
2 changed files with 14 additions and 17 deletions

View File

@@ -32,9 +32,5 @@ def cmp(a, b):
return (a > b) - (a < b)
def int_to_byte(x):
return bytes((x,))
def reload(module):
return importlib.reload(module)