aboutsummaryrefslogtreecommitdiff
path: root/codegen/lib/code
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2022-06-16 19:33:34 -0500
committermat <github@matdoes.dev>2022-06-16 19:33:34 -0500
commit5d5441427f21733046a8f4e5671276408f32c27f (patch)
tree24fffef2d49260766a1dd534a20a35318821c30e /codegen/lib/code
parentb907ea5a3f731f21f288508105c986153a82ca21 (diff)
downloadazalea-drasl-5d5441427f21733046a8f4e5671276408f32c27f.tar.xz
less underscores
Diffstat (limited to 'codegen/lib/code')
-rw-r--r--codegen/lib/code/blocks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/codegen/lib/code/blocks.py b/codegen/lib/code/blocks.py
index b3df15cf..f6d6bb4b 100644
--- a/codegen/lib/code/blocks.py
+++ b/codegen/lib/code/blocks.py
@@ -42,7 +42,7 @@ def generate_blocks(blocks_burger: dict, blocks_report: dict, ordered_blocks: li
return 'ComparatorType'
if property is None:
- return '_'.join(map(to_camel_case, property_variants)).replace('__', '_')
+ return ''.join(map(to_camel_case, property_variants))
property_name = None
for class_name in [block_data_burger['class']] + block_data_burger['super']: