Reputation: 41
import classes.game import bcolors, Person
Upvotes: 0
Views: 39
Reputation: 516
If you type from classes.game import bcolors, Person
, python will look for a file called classes.game.py, which doesn't exist.
Instead you should do
from game import bcolors, Person
as you're trying to import from the module 'game.py'.
Upvotes: 1