From be7d97af141ec07f8afca289889aa54e501e4a21 Mon Sep 17 00:00:00 2001 From: Andy Maloney Date: Mon, 17 Jan 2022 17:55:18 -0500 Subject: [PATCH] heapq is part of the python lib The old ccm legacy code does not exist anymore, and heapq is just part of python, so remove this try/except. --- python_actr/scheduler.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/python_actr/scheduler.py b/python_actr/scheduler.py index b10f6b6..56e9c9a 100644 --- a/python_actr/scheduler.py +++ b/python_actr/scheduler.py @@ -1,8 +1,5 @@ -try: - import heapq -except ImportError: - import ccm.legacy.heapq as heapq +import heapq import copy from . import logger