Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "D:\Main\Programming\Python\Console\mod_project\auto_message_mod.py", line 5, in <module>
import mod
File "D:\Main\Programming\Python\Console\mod_project\mod.py", line 77, in <module>
main()
File "D:\Main\Programming\Python\Console\mod_project\mod.py", line 18, in main
main_program_menu()
File "D:\Main\Programming\Python\Console\mod_project\mod.py", line 36, in main_program_menu
auto.auto_message_tools()
AttributeError: partially initialized module 'auto_message_mod' has no attribute 'auto_message_tools' (most likely due to a circular import)
I keep getting these errors while I try to import the file call auto_message_mod.py
into mod.py
and in mod.py
, I tried to call the function auto_message_tools
(these files are in the same folder). I also have imported the other files into mod.py
and it worked perfectly. Except auto_message_mod.py
. I have written import auto_message_mod as auto
but it was not working. I have already tried auto.auto_message_tools()
but didn't work. Can someone please help me?