Don't use a getter, just access the class attribute directly. Normally getters are used to access private/protected attributes but in python there is no such thing. Another reason to use a getter is so that you can do some work before returning a value, in your case your not, but that might change in the future right, no worries, when that time comes just start using the property
decorator
@property
def name(self):
return self._name
you will still access it like this, myObject.name
, same as accessing it directly.