Skip to content

Commit

Permalink
fix indents
Browse files Browse the repository at this point in the history
  • Loading branch information
julianlocke committed Jul 24, 2024
1 parent cdae7f6 commit a022eca
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions stone/backends/python_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,7 @@ def _generate_custom_annotation_processors(self, ns, data_type, extra_annotation
if is_struct_type(dt) and dt.has_enumerated_subtypes():
for subtype in dt.get_enumerated_subtypes():
for annotation_type, recursive_processor in \
self._generate_custom_annotation_processors(ns, subtype.data_type):
self._generate_custom_annotation_processors(ns, subtype.data_type):
if annotation_type not in annotation_types_seen:
yield (annotation_type, recursive_processor)
annotation_types_seen.add(annotation_type)
Expand All @@ -656,9 +656,9 @@ def _generate_custom_annotation_processors(self, ns, data_type, extra_annotation
generate_func_call(
'bb.make_struct_annotation_processor',
args=[
class_name_for_annotation_type(
annotation.annotation_type, ns),
'processor']
class_name_for_annotation_type(
annotation.annotation_type, ns),
'processor']
))
annotation_types_seen.add(annotation.annotation_type)
elif is_list_type(dt):
Expand Down

0 comments on commit a022eca

Please sign in to comment.