hi,
i have a file pages/01_sample.py where 01_sample.py have functions
def fn1():
def fn2():
def fn3():
tasks.py want to import fn2 only
from pages.01_sample import f2
causes an error
SyntaxError: invalid decimal literal
if i rename to pages.sample only, the import works
how to import the module 01_sample ?
TIA