Fix Codacy Warnings (#477)
--------- Co-authored-by: Dario Coscia <dariocos99@gmail.com>
This commit is contained in:
committed by
Nicola Demo
parent
e3790e049a
commit
4177bfbb50
@@ -17,7 +17,6 @@ class DomainInterface(metaclass=ABCMeta):
|
||||
"""
|
||||
Abstract method returing available samples modes for the Domain.
|
||||
"""
|
||||
pass
|
||||
|
||||
@property
|
||||
@abstractmethod
|
||||
@@ -25,7 +24,6 @@ class DomainInterface(metaclass=ABCMeta):
|
||||
"""
|
||||
Abstract method returing Domain variables.
|
||||
"""
|
||||
pass
|
||||
|
||||
@sample_modes.setter
|
||||
def sample_modes(self, values):
|
||||
@@ -48,7 +46,6 @@ class DomainInterface(metaclass=ABCMeta):
|
||||
Abstract method for sampling a point from the location. To be
|
||||
implemented in the child class.
|
||||
"""
|
||||
pass
|
||||
|
||||
@abstractmethod
|
||||
def is_inside(self, point, check_border=False):
|
||||
@@ -61,4 +58,3 @@ class DomainInterface(metaclass=ABCMeta):
|
||||
of the location is considered checked to be considered inside or
|
||||
not. Defaults to ``False``.
|
||||
"""
|
||||
pass
|
||||
|
||||
Reference in New Issue
Block a user