Fix Codacy Warnings (#477)

---------

Co-authored-by: Dario Coscia <dariocos99@gmail.com>
This commit is contained in:
Filippo Olivo
2025-03-10 15:38:45 +01:00
committed by Nicola Demo
parent e3790e049a
commit 4177bfbb50
157 changed files with 3473 additions and 3839 deletions

View File

@@ -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