Skip to content

Commit

Permalink
Format route namespaces with camel case (#314)
Browse files Browse the repository at this point in the history
  • Loading branch information
julianlocke committed Aug 27, 2024
1 parent 33908ef commit fa53e15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stone/backends/swift_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def _namespace_fields(self, api):
namespace_fields = []
for namespace in api.namespaces.values():
if self._namespace_contains_valid_routes_for_auth_type(namespace):
namespace_fields.append((namespace.name,
namespace_fields.append((fmt_var(namespace.name),
fmt_class(self._class_name(namespace.name))))

return namespace_fields
Expand Down

0 comments on commit fa53e15

Please sign in to comment.