6 lines
159 B
Python
6 lines
159 B
Python
|
|
class XICVisualizer:
|
||
|
|
def report(self, manifest):
|
||
|
|
print(f"xic_visualizer.report called with manifest={manifest}")
|
||
|
|
|
||
|
|
xic_visualizer = XICVisualizer()
|