Skip to content
This repository was archived by the owner on Oct 1, 2021. It is now read-only.

Commit e93efdd

Browse files
fbradyirlballoob
authored andcommitted
Add support for discovering enigma2 based devices (#241)
* Create enigma2.py * Update enigma2.py * Fix type issue failing build * Fix mypi version
1 parent 74cd2ec commit e93efdd

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

netdisco/discoverables/enigma2.py

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
"""Discover Enigma2 servers."""
2+
from . import MDNSDiscoverable
3+
4+
5+
class Discoverable(MDNSDiscoverable):
6+
"""Add support for discovering Enigma2 boxes."""
7+
8+
def __init__(self, nd):
9+
"""Initialize the Enigma2 discovery."""
10+
super(Discoverable, self).__init__(nd, '_e2stream._tcp.local.')

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ commands =
2121

2222
[testenv:typing]
2323
deps =
24-
mypy>=0.650
24+
mypy==0.650
2525
commands =
2626
mypy netdisco tests setup.py example_service.py

0 commit comments

Comments
 (0)