forked from p15670423/monkey
Remove property decorator, it's not a property.
This commit is contained in:
parent
9a40bfa211
commit
bf44f2355f
|
@ -2,7 +2,6 @@ from abc import ABCMeta, abstractmethod
|
|||
|
||||
|
||||
class HostScanner(metaclass=ABCMeta):
|
||||
@property
|
||||
@abstractmethod
|
||||
def is_host_alive(self, host):
|
||||
raise NotImplementedError()
|
||||
|
|
Loading…
Reference in New Issue