Closed sunwillrise closed 5 years ago
Hi. If you use import latools as la at the beginning, you cannot use la.preprocessing.split.long_file().
import latools as la
la.preprocessing.split.long_file()
You have to do from latools import preprocessing as pre at the beginning and do pre.split.long_file(), if you want to use the function.
from latools import preprocessing as pre
pre.split.long_file()
Hope this helps.
Hi. If you use
import latools as la
at the beginning, you cannot usela.preprocessing.split.long_file()
.You have to do
from latools import preprocessing as pre
at the beginning and dopre.split.long_file()
, if you want to use the function.Hope this helps.