From fastai import Path results in NameError

@sgugger @jeremy i am getting NameError while importing Path from fastai. Are there some code changes? Till yesterday it was working fine.

from fastai import Path

link to my colab notebook
https://colab.research.google.com/drive/1tiDdmEH3CCdSOyuxqdWNA-25pH4aBWxi

@rahulbakshee Either use pathlib module and import Path or you can import all the modules from fastai core.
Default Path from Pathlib doesn’t provide ls functionality.

It seems the correct way is

from fastai.vision import Path

rather than

from fastai import Path