Remove property decorator, it's not a property.

This commit is contained in:
Daniel Goldberg 2019-11-27 13:58:46 +02:00
parent 9a40bfa211
commit bf44f2355f
1 changed files with 0 additions and 1 deletions

View File

@ -2,7 +2,6 @@ from abc import ABCMeta, abstractmethod
class HostScanner(metaclass=ABCMeta):
@property
@abstractmethod
def is_host_alive(self, host):
raise NotImplementedError()