File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff 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 = [
You can’t perform that action at this time.
0 commit comments