Skip to content
This repository was archived by the owner on Oct 1, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions netdisco/discoverables/enigma2.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
"""Discover Enigma2 servers."""
from . import MDNSDiscoverable


class Discoverable(MDNSDiscoverable):
"""Add support for discovering Enigma2 boxes."""

def __init__(self, nd):
"""Initialize the Enigma2 discovery."""
super(Discoverable, self).__init__(nd, '_e2stream._tcp.local.')
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ commands =

[testenv:typing]
deps =
mypy>=0.650
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixing this as newer versions are breaking the build.

mypy==0.650
commands =
mypy netdisco tests setup.py example_service.py