MCPcopy
hub / github.com/jtesta/ssh-audit / write

Method write

src/ssh_audit/outputbuffer.py:91–94  ·  view source on GitHub ↗

Writes the output to stdout.

(self)

Source from the content-addressed store, hash-verified

89 return buffer_str
90
91 def write(self) -> None:
92 '''Writes the output to stdout.'''
93 self.flush_section()
94 print(self.get_buffer(), flush=True)
95
96 def reset(self) -> None:
97 self.flush_section()

Calls 2

flush_sectionMethod · 0.95
get_bufferMethod · 0.95