MCPcopy Create free account
hub / github.com/scottrogowski/code2flow / to_string

Method to_string

code2flow/model.py:196–204  ·  view source on GitHub ↗

Returns a representation of this call to be printed by the engine in logging. :rtype: str

(self)

Source from the content-addressed store, hash-verified

194 return f"<Call owner_token={self.owner_token} token={self.token}>"
195
196 def to_string(self):
197 """
198 Returns a representation of this call to be printed by the engine
199 in logging.
200 :rtype: str
201 """
202 if self.owner_token:
203 return f"{self.owner_token}.{self.token}()"
204 return f"{self.token}()"
205
206 def is_attr(self):
207 """

Callers 1

map_itFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected