From e0ea04c658b1057403812bd4b58d313bfff22e43 Mon Sep 17 00:00:00 2001 From: gryf Date: Sun, 19 Jul 2020 10:25:30 +0200 Subject: [PATCH] Removed unused monotonic module --- ebook_converter/utils/monotonic.py | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 ebook_converter/utils/monotonic.py diff --git a/ebook_converter/utils/monotonic.py b/ebook_converter/utils/monotonic.py deleted file mode 100644 index 7db686c..0000000 --- a/ebook_converter/utils/monotonic.py +++ /dev/null @@ -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