I can't get tensorflow working

I made a code in python using tensorflow, I left the project for a while and cleared mi computer after that I was trying to run my code but it kept showing this error:
ImportError: cannot import name ‘TeachableMachine’ from partially initialized module ‘teachable_machine’ (most likely due to a circular import) (C:\Users-----\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\LocalCache\local-packages\Python39\site-packages\teachable_machine.py)

Hi @Fer_NG, This error is due to the circular import and is not related to tensorflow. The circular import error occurs when two modules dependent on each other try to import before fully loading causing a loop. Thank You.