MCPcopy Create free account
hub / github.com/bedroombuilds/python2rust / __init__

Method __init__

2a_builder_pattern/python/default_args.py:4–8  ·  view source on GitHub ↗
(self, uid, email, first_name=None, last_name=None)

Source from the content-addressed store, hash-verified

2
3class User:
4 def __init__(self, uid, email, first_name=None, last_name=None):
5 self.id = uid
6 self.email = email
7 self.first_name = first_name
8 self.last_name = last_name
9
10 def complete(self):
11 return self.last_name is not None \

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected