MCPcopy Create free account
hub / github.com/dabeaz-course/python-mastery / __init__

Method __init__

Solutions/7_1/validate.py:4–5  ·  view source on GitHub ↗
(self, name=None)

Source from the content-addressed store, hash-verified

2
3class Validator:
4 def __init__(self, name=None):
5 self.name = name
6
7 def __set_name__(self, cls, name):
8 self.name = name

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected