We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7a977d commit b15caf8Copy full SHA for b15caf8
Packs/SilentPush/Integrations/SilentPush/SilentPush.py
@@ -120,9 +120,6 @@ def list_domain_information(self, domain: str) -> dict:
120
return self._http_request('GET', url_suffix)
121
122
123
-''' COMMAND FUNCTIONS '''
124
-
125
126
def test_module(client: Client) -> str:
127
"""
128
Tests connectivity to the SilentPush API and checks the authentication status.
@@ -146,6 +143,10 @@ def test_module(client: Client) -> str:
146
143
if 'Forbidden' in str(e) or 'Authorization' in str(e):
147
144
return 'Authorization Error: make sure API Key is correctly set'
148
145
raise e
+
+''' COMMAND FUNCTIONS '''
149
150
151
def list_domain_information_command(client: Client, args: dict) -> CommandResults:
152
0 commit comments