Skip to content

Commit 14b37ec

Browse files
committed
yapf
1 parent ed2f42f commit 14b37ec

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

geos-trame/src/geos/trame/app/deck/tree.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ def _set_base_model_properties( model: dict, proxy_path: str, properties: dict )
286286

287287
if proxy_name.isnumeric() and int( proxy_name ) < len( model_copy ):
288288
models.append( ( proxy_name, model_copy ) )
289-
model_copy = model_copy[ int(proxy_name) if is_list else proxy_name ]
289+
model_copy = model_copy[ int( proxy_name ) if is_list else proxy_name ]
290290
continue
291291

292292
if proxy_name in model_copy:

geos-trame/src/geos/trame/app/ui/inspector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def _on_change( topic: str, ids: list | None = None ) -> None:
6565
proxy = self.simput_manager.proxymanager.get( obj_id )
6666
#self.tree.decode( obj_id ) # if const function and return not used why ?? to decode context ??
6767
for prop in proxy.edited_property_names:
68-
self.tree.update( obj_id, text.camel_case(prop), proxy.get_property( prop ) )
68+
self.tree.update( obj_id, text.camel_case( prop ), proxy.get_property( prop ) )
6969

7070
self.simput_manager.proxymanager.on( _on_change )
7171

0 commit comments

Comments
 (0)