mirror of
https://github.com/graphql-python/graphene.git
synced 2025-02-02 12:44:15 +03:00
5 lines
121 B
Python
5 lines
121 B
Python
def get_unbound_function(func):
|
|
if not getattr(func, "__self__", True):
|
|
return func.__func__
|
|
return func
|