From 415943beeb7051a233c7ae0e94dd8debcdf18089 Mon Sep 17 00:00:00 2001 From: Andy Maloney Date: Mon, 17 Jan 2022 17:53:27 -0500 Subject: [PATCH] Fix import which was referencing ccm --- python_actr/display/pygame/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_actr/display/pygame/core.py b/python_actr/display/pygame/core.py index ab42ba7..afb48dc 100644 --- a/python_actr/display/pygame/core.py +++ b/python_actr/display/pygame/core.py @@ -1,6 +1,6 @@ import pygame import time -from ccm.display.pygame import render +from python_actr.display.pygame import render class PygameDisplay: def __init__(self,obj,width=640,height=480,full=False,title='CCMSuite3',background='#CCCCCC'):