MCPcopy Create free account
hub / github.com/brain-workshop/brainworkshop / __init__

Method __init__

brainworkshop.py:1438–1444  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1436
1437class Graph:
1438 def __init__(self):
1439 self.graph = 2
1440 self.reset_dictionaries()
1441 self.reset_percents()
1442 self.batch = None
1443 self.styles = ['N+10/3+4/3', 'N', '%', 'N.%', 'N+2*%-1']
1444 self.style = 0
1445
1446 def next_style(self):
1447 self.style = (self.style + 1) % len(self.styles)

Callers

nothing calls this directly

Calls 2

reset_dictionariesMethod · 0.95
reset_percentsMethod · 0.95

Tested by

no test coverage detected