Python Importing object that originates in one module from a different module into a third module
- by adewinter
I was reading the sourcode for a python project and came across the following line:
from couchexport.export import Format
(source: https://github.com/wbnigeria/couchexport/blob/master/couchexport/views.py#L1 )
I went over to couchexport/export.py to see what Format was (Class? Dict? something else?). Unfortunately Format isn't in that file. …