Ver código fonte

chore(api/core/app/segments/segments.py): Remove todo tags. (#7052)

-LAN- 8 meses atrás
pai
commit
4e8f6b3603
1 arquivos alterados com 0 adições e 3 exclusões
  1. 0 3
      api/core/app/segments/segments.py

+ 0 - 3
api/core/app/segments/segments.py

@@ -89,17 +89,14 @@ class ObjectSegment(Segment):
 
     @property
     def text(self) -> str:
-        # TODO: Process variables.
         return json.dumps(self.model_dump()['value'], ensure_ascii=False)
 
     @property
     def log(self) -> str:
-        # TODO: Process variables.
         return json.dumps(self.model_dump()['value'], ensure_ascii=False, indent=2)
 
     @property
     def markdown(self) -> str:
-        # TODO: Use markdown code block
         return json.dumps(self.model_dump()['value'], ensure_ascii=False, indent=2)