mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-09-11 22:53:04 +00:00
* fix(ingestion): classify Python class methods as Method * fix(test): align Python large-buffer assertion with Method labels --------- Co-authored-by: gergo <gergo@Galahad.localdomain>
6 lines
105 B
Python
6 lines
105 B
Python
class User:
|
|
def save(self):
|
|
return True
|
|
|
|
def __getitem__(self, key):
|
|
return None
|