Remove debug prints from HeaterFactory
print(**kwargs) crashes at runtime since print doesn't accept arbitrary keyword arguments. Both debug lines were leftover scaffolding. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Tqxrk8uj4M3w3d3eXm3xK8
This commit is contained in:
@@ -5,8 +5,6 @@ class HeaterFactory:
|
||||
def create(name, *args, **kwargs):
|
||||
if "sim" in name:
|
||||
from components.actor.heater_sim import HeaterSim
|
||||
print (*args)
|
||||
print (**kwargs)
|
||||
return HeaterSim(*args, **kwargs)
|
||||
elif "Hendi" in name:
|
||||
from components.actor.heater_hendi import HeaterHendi
|
||||
|
||||
Reference in New Issue
Block a user