graphene/graphene/utils/get_unbound_function.py
2016-10-03 19:59:01 -07:00

5 lines
121 B
Python

def get_unbound_function(func):
if not getattr(func, '__self__', True):
return func.__func__
return func