mirror of
https://github.com/NicolasBohn/NexQuant.git
synced 2026-08-09 21:10:56 +00:00
fix: fix some bugs in quant scen (#1026)
* fix some bugs * fix ci * fix * refine * fix ci
This commit is contained in:
@@ -73,8 +73,9 @@ class ExperimentFeedback(Feedback):
|
||||
|
||||
def __str__(self) -> str:
|
||||
res = f"Decision: {self.decision}\nReason: {self.reason}"
|
||||
if self.code_change_summary is not None:
|
||||
res += "\nCode Change Summary: " + self.code_change_summary
|
||||
code_change_summary = getattr(self, "code_change_summary", None)
|
||||
if code_change_summary is not None:
|
||||
res += "\nCode Change Summary: " + code_change_summary
|
||||
return res
|
||||
|
||||
@classmethod
|
||||
|
||||
Reference in New Issue
Block a user