Skip to content

Commit fb97585

Browse files
Style: remove verbose docstrings to match repo conventions
Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent d3d2632 commit fb97585

3 files changed

Lines changed: 0 additions & 7 deletions

File tree

cterasdk/objects/synchronous/remote_clients.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,6 @@
77

88

99
class RemoteClients:
10-
"""
11-
Base class for remote device client management with lazy SSO authentication.
12-
13-
Subclasses must set ``self._device`` before calling ``super().__init__``.
14-
"""
1510

1611
def __init__(self, device, Portal, api_client):
1712
self._device = device

tests/ut/core/admin/test_relay_base.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ def test_baseurl_with_path(self):
6868
self.assertEqual(result, 'https://portal.ctera.me/api/v1/devices/vGateway-7192')
6969

7070
def test_substring_device_name_does_not_false_match(self):
71-
"""A device named 'gw' should NOT match dns 'other-gw.portal.ctera.me'."""
7271
portal = self._make_portal('https://portal.ctera.me')
7372
device = self._make_device('gw', 'other-gw.portal.ctera.me')
7473
result = _relay_base(portal, device)

tests/ut/core/admin/test_remote.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ def _create_device_param(name, portal, device_type, remote_access_url):
7474
return param
7575

7676
def _setup_remote_device_with_sso(self):
77-
"""Common setup for SSO auto-login tests. Returns the remote device with a mocked _api."""
7877
remote_session = self.patch_call("cterasdk.lib.session.edge.Session.start_remote_session")
7978
remote_session.return_value = munch.Munch({'account': munch.Munch({'name': 'mickey', 'tenant': 'tenant'})})
8079
get_multi_response = TestCoreRemote._create_device_param(self._device_name, self._device_portal,

0 commit comments

Comments
 (0)