1
0
mirror of https://github.com/gryf/ebook-converter.git synced 2026-01-11 06:14:11 +01:00

Removed unused monotonic module

This commit is contained in:
2020-07-19 10:25:30 +02:00
parent fbeb2fbf18
commit e0ea04c658

View File

@@ -1,10 +0,0 @@
try:
from time import monotonic
except ImportError:
from ebook_converter.constants_old import plugins
monotonicp, err = plugins['monotonic']
if err:
raise RuntimeError('Failed to load the monotonic module with error: ' + err)
monotonic = monotonicp.monotonic
del monotonicp, err