Thanks for the nice project!
I'm trying to use pytinytex but am getting the following error:
NameError: name 'urllib' is not defined. Did you forget to import 'urllib'?
in reference to
|
except urllib.error.HTTPError as e: |
It looks like urllib is only imported in this block:
|
try: |
|
from urllib.request import urlopen |
|
except ImportError: |
|
from urllib import urlopen |
but should also be imported at the top level.
Happy to open a quick PR if desired. Thanks!
Thanks for the nice project!
I'm trying to use
pytinytexbut am getting the following error:NameError: name 'urllib' is not defined. Did you forget to import 'urllib'?in reference to
PyTinyTeX/pytinytex/tinytex_download.py
Line 77 in aa36458
It looks like
urllibis only imported in this block:PyTinyTeX/pytinytex/tinytex_download.py
Lines 10 to 13 in aa36458
but should also be imported at the top level.
Happy to open a quick PR if desired. Thanks!