That's likely a circular import, dont put imports at the top level, they slow down calibre startup. Generally re-importing an already imported module is fast, since it basically does a dict lookup and re-uses the imported copy. Certainly that time will be negligible compared to the time required to edit the epub.
|