Skip to content

Commit b15caf8

Browse files
committed
updated the code
1 parent c7a977d commit b15caf8

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Packs/SilentPush/Integrations/SilentPush/SilentPush.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,6 @@ def list_domain_information(self, domain: str) -> dict:
120120
return self._http_request('GET', url_suffix)
121121

122122

123-
''' COMMAND FUNCTIONS '''
124-
125-
126123
def test_module(client: Client) -> str:
127124
"""
128125
Tests connectivity to the SilentPush API and checks the authentication status.
@@ -146,6 +143,10 @@ def test_module(client: Client) -> str:
146143
if 'Forbidden' in str(e) or 'Authorization' in str(e):
147144
return 'Authorization Error: make sure API Key is correctly set'
148145
raise e
146+
147+
148+
''' COMMAND FUNCTIONS '''
149+
149150

150151
def list_domain_information_command(client: Client, args: dict) -> CommandResults:
151152
"""

0 commit comments

Comments
 (0)