Skip to content

Commit 69e672d

Browse files
committed
different for plugins i guess
1 parent c4a3f46 commit 69e672d

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

src/compas/geometry/brep/brep.py

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,6 @@ class Brep(Geometry):
7676
This class serves as an interface for a Brep and allows instantiating a Brep object depending on the available Backend.
7777
Note: this is not a full implementation of Brep and rather relies on COMPAS's plugin system for actual implementation.
7878
79-
Parameters
80-
----------
81-
name : str, optional
82-
The name of the Brep.
83-
8479
Attributes
8580
----------
8681
area : float, read-only
@@ -154,8 +149,8 @@ def __from_data__(cls, data):
154149
def __new__(cls, *args, **kwargs):
155150
return new_brep(cls, *args, **kwargs)
156151

157-
def __init__(self, *args, name=None):
158-
super(Brep, self).__init__(*args, name=name)
152+
def __init__(self, *args, **kwargs):
153+
super(Brep, self).__init__(*args, **kwargs)
159154

160155
def __str__(self):
161156
lines = [

0 commit comments

Comments
 (0)