Skip to content

Commit

Permalink
disable new logger
Browse files Browse the repository at this point in the history
  • Loading branch information
camirmas committed Aug 7, 2023
1 parent d755ee5 commit 8803eda
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hopp/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from hopp.type_dec import FromDictMixin
from hopp.logging_manager import LoggerBase

class BaseClass(LoggerBase, FromDictMixin):
class BaseClass(FromDictMixin):
"""
BaseClass object class. This class does the logging and MixIn class inheritance.
"""
Expand Down
2 changes: 1 addition & 1 deletion hopp/simulation/technologies/pySSC_daotk/ssc_wrap.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import sys, os
sys.path.insert(1, os.path.join(sys.path[0], '..'))
from ctypes import c_double
from ctypes import c_double, c_int, c_char_p, c_void_p, pointer, POINTER, c_float, byref
c_number = c_double # must be c_double or c_float depending on how defined in sscapi.h
import abc
import importlib
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ hybridbosse
lcoe
lxml
matplotlib
multiprocessing-on-dill
nevergrad
nlopt
numpy<1.25
Expand Down

0 comments on commit 8803eda

Please sign in to comment.