Skip to content

Commit

Permalink
add black
Browse files Browse the repository at this point in the history
  • Loading branch information
jesicasusanto committed Jun 13, 2023
1 parent 4a58ad4 commit 5501191
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions openadapt/window/_windows.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,10 @@ def get_element_properties(element):
children = element.children()

if children:
properties['children'] = [get_element_properties(child) for child in children]
properties["children"] = [get_element_properties(child) for child in children]

# Serialize the "rectangle" key
properties['rectangle'] = serialize_rect(properties['rectangle'])
properties["rectangle"] = serialize_rect(properties["rectangle"])

return properties

Expand All @@ -138,8 +138,6 @@ def serialize_rect(rect):
return serialized




def main():
import time

Expand Down

0 comments on commit 5501191

Please sign in to comment.