From 59660c9b50fbea2cc4bd2865c84f9afd8939d94f Mon Sep 17 00:00:00 2001 From: JMSwag Date: Tue, 17 Nov 2020 09:13:02 -0800 Subject: [PATCH] convert idention to spaces --- graphene/utils/str_converters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphene/utils/str_converters.py b/graphene/utils/str_converters.py index f155d8ea..80ff1e33 100644 --- a/graphene/utils/str_converters.py +++ b/graphene/utils/str_converters.py @@ -5,7 +5,7 @@ import re # http://stackoverflow.com/a/19053800/1072990 def to_camel_case(snake_str): - # We capitalize the first letter of each component except the first one + # We capitalize the first letter of each component except the first one # with the 'capitalize' method and join them together. def _camel_case_convert(components): return components[0] + "".join(x.capitalize() if x else "_" for x in components[1:])