From df8bbf4f498599ff4d2ea34ca2f5715aa00b3d88 Mon Sep 17 00:00:00 2001 From: Jurgen Lentz Date: Tue, 29 Oct 2024 23:27:30 +0100 Subject: [PATCH] change kind --- amplpy/outputhandler.pxi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amplpy/outputhandler.pxi b/amplpy/outputhandler.pxi index 1796c99..38014cd 100644 --- a/amplpy/outputhandler.pxi +++ b/amplpy/outputhandler.pxi @@ -33,7 +33,7 @@ cdef void PyOutput(campl.AMPL_OUTPUTKIND kind, const char* msg, void* usrdata) e PyOutputHandler = usrdata PyOutputHandler.output(kind, str(msg.decode('utf-8'))) -class Kind(Enum): +class Kind(object): """ Represents the type of the output coming from the interpreter. """