Skip to content

Title: Update documentation for API endpoints and usage examples #132

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 25, 2024
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
3 changes: 3 additions & 0 deletions multicast/hear.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,10 +172,13 @@
else: # pragma: no branch
multicast = _sys.modules["""multicast"""]
_BLANK = multicast._BLANK # skipcq: PYL-W0212 - module ok
# skipcq
from . import recv as recv # pylint: disable=useless-import-alias - skipcq: PYL-C0414
# skipcq
from . import send as send # pylint: disable=useless-import-alias - skipcq: PYL-C0414
except Exception as importErr:
del importErr # skipcq - cleanup any error leaks early
# skipcq
import multicast as multicast # pylint: disable=cyclic-import - skipcq: PYL-R0401, PYL-C0414


Expand Down
2 changes: 2 additions & 0 deletions multicast/recv.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,12 +177,14 @@
try:
import sys
if 'multicast' not in sys.modules:
# skipcq
from . import multicast as multicast # pylint: disable=cyclic-import - skipcq: PYL-C0414
else: # pragma: no branch
multicast = sys.modules["""multicast"""]
_BLANK = multicast._BLANK # skipcq: PYL-W0212 - module ok
except Exception as importErr:
del importErr # skipcq - cleanup any error leaks early
# skipcq
import multicast as multicast # pylint: disable=cyclic-import - skipcq: PYL-R0401, PYL-C0414


Expand Down
2 changes: 1 addition & 1 deletion tests/test_usage.py
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ class BasicIntegrationTestSuite(context.BasicUsageTestSuite):
__name__ = """tests.test_usage.BasicIntegrationTestSuite"""

def setUp(self):
super(self.__class__, self).setUp()
super(self.__class__, self).setUp() # skipcq: PYL-E1003 - this is more polymorphic
if (self._thepython is None):
self.skipTest(str("""No python cmd to test with!"""))

Expand Down
Loading