Added check for destination direction on annonuce
This commit is contained in:
parent
70cbb8dc79
commit
21c6dbfce0
|
@ -181,6 +181,9 @@ class Destination:
|
|||
"""
|
||||
if self.type != Destination.SINGLE:
|
||||
raise TypeError("Only SINGLE destination types can be announced")
|
||||
|
||||
if self.direction != Destination.IN:
|
||||
raise TypeError("Only IN destination types can be announced")
|
||||
|
||||
now = time.time()
|
||||
stale_responses = []
|
||||
|
|
Loading…
Reference in New Issue