MCPcopy Create free account
hub / github.com/baowenbo/DAIN / __init__

Method __init__

Stack.py:3–4  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1
2class Stack:
3 def __init__(self):
4 self.stack = []
5 def pop(self):
6 if self.is_empty():
7 return None

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected