Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvanmele committed Oct 1, 2024
1 parent 8402d8e commit 87a7a99
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion src/compas_rui/forms/error.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ def wrapper(*args, **kwargs):

class ErrorForm(Eto.Forms.Dialog[bool]):
def __init__(self, error="Unknown", title="Error", width=800, height=500):

super().__init__()

self.Title = title
Expand Down
1 change: 0 additions & 1 deletion src/compas_rui/forms/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

class InfoForm(Eto.Forms.Dialog[bool]):
def __init__(self, text, title="Info", width=800, height=500):

super().__init__()

self.Title = title
Expand Down
1 change: 0 additions & 1 deletion src/compas_rui/forms/meshdata.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ def __init__(
excluded_edge_attr=None,
excluded_face_attr=None,
):

super().__init__()

self.mesh = mesh
Expand Down
1 change: 0 additions & 1 deletion src/compas_rui/forms/namedvalues.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ def show(self):


if __name__ == "__main__":

form = NamedValuesForm(names=["a", "b"], values=[1, 2])
if form.show():
print(form.attributes)
1 change: 0 additions & 1 deletion src/compas_rui/forms/scene.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,6 @@ def on_click(sender, e):

class SceneObjectsForm(Eto.Forms.Dialog[bool]):
def __init__(self, scene, title="Scene Objects", width=800, height=500):

super().__init__()

self.Title = title
Expand Down
1 change: 0 additions & 1 deletion src/compas_rui/forms/splash.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

class SplashForm(Eto.Forms.Dialog[bool]):
def __init__(self, title, url, width=800, height=450):

super().__init__()

self.Title = title
Expand Down

0 comments on commit 87a7a99

Please sign in to comment.