mirror of
https://github.com/graphql-python/graphene.git
synced 2024-12-02 14:33:58 +03:00
8 lines
147 B
Python
8 lines
147 B
Python
from ..utils import to_camel_case
|
|
|
|
|
|
class CamelCase(object):
|
|
|
|
def get_default_namedtype_name(self, value):
|
|
return to_camel_case(value)
|