Skip to content

Commit 40b1761

Browse files
jzwarclemens-fricke
authored andcommitted
Renaming variables
1 parent 784724e commit 40b1761

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

splinepy/microstructure/tiles/tile_base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def _raise_if_not_set_else_return(cls, attr_name):
3131
return attr
3232

3333
@property
34-
def evaluation_points(cls):
34+
def evaluation_points(self):
3535
"""Positions in the parametrization function to be evaluated when tile
3636
is constructed prior to composition.
3737
@@ -43,7 +43,7 @@ def evaluation_points(cls):
4343
-------
4444
evaluation_points : np.ndarray(6,3)
4545
"""
46-
return cls._raise_if_not_set_else_return("_evaluation_points")
46+
return self._raise_if_not_set_else_return("_evaluation_points")
4747

4848
@property
4949
def dim(self):

0 commit comments

Comments
 (0)