How to Solve NameError: name 'say_hi' is not defined -- common

Solution: Import the 'say_hi' module

To Solve the error, add the following line to the top of your code.

from common.aaa import say_hi

 

For more information:
Python common say_hi