MCPcopy Create free account
hub / github.com/bspaans/python-mingus / __str__

Method __str__

mingus/core/scales.py:106–109  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

104 return "<Scale object ('{0}')>".format(self.name)
105
106 def __str__(self):
107 return "Ascending: {0}\nDescending: {1}".format(
108 " ".join(self.ascending()), " ".join(self.descending())
109 )
110
111 def __eq__(self, other):
112 if self.ascending() == other.ascending():

Callers

nothing calls this directly

Calls 2

ascendingMethod · 0.95
descendingMethod · 0.95

Tested by

no test coverage detected