MCPcopy Create free account
hub / github.com/intelowlproject/IntelOwl / __init__

Method __init__

api_app/visualizers_manager/classes.py:477–485  ·  view source on GitHub ↗
(
        self,
        position: int,
        size: VisualizableLevelSize = VisualizableLevelSize.S_6,
        horizontal_list: VisualizableHorizontalList = VisualizableHorizontalList(value=[]),
    )

Source from the content-addressed store, hash-verified

475
476class VisualizableLevel:
477 def __init__(
478 self,
479 position: int,
480 size: VisualizableLevelSize = VisualizableLevelSize.S_6,
481 horizontal_list: VisualizableHorizontalList = VisualizableHorizontalList(value=[]),
482 ):
483 self._position = position
484 self._size = size
485 self._horizontal_list = horizontal_list
486
487 def to_dict(self):
488 return {

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected