@staticmethod
def _infer_from_speed_range(min_speed, max_speed):
"""Player method to specify how to calculate speed range."""
return (min_speed + max_speed) / 2
A class can have static methods that don't use self. Classes have these methods put as external methods because they don't call self, but they really should be static methods.
A class can have static methods that don't use self. Classes have these methods put as external methods because they don't call self, but they really should be static methods.