MCPcopy Create free account
hub / github.com/Rushifakami/csfloat_api / Stall

Class Stall

models/stall.py:5–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3
4
5class Stall:
6 def __init__(self, *, data: Dict[str, Any]) -> None:
7 listings_data = data.get('data')
8 if listings_data is None:
9 self._listings = []
10 else:
11 self._listings = [Listing(data=item) for item in listings_data]
12
13 @property
14 def listings(self) -> List[Listing]:
15 return self._listings

Callers 1

get_stallMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected