Skip to content

Commit

Permalink
[Marketplace Contribution] Signum - Content Pack Update (#35930)
Browse files Browse the repository at this point in the history
* "contribution update to pack 'Signum'" (#35904)

* Update .pack-ignore

* Update Signum.py

---------

Co-authored-by: xsoar-bot <67315154+xsoar-bot@users.noreply.github.com>
Co-authored-by: Adi Daud <46249224+adi88d@users.noreply.github.com>
  • Loading branch information
3 people authored and maimorag committed Aug 27, 2024
1 parent 9797dc1 commit ea7251d
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 5 deletions.
2 changes: 2 additions & 0 deletions Packs/Signum/.pack-ignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[file:1_0_1.md]
ignore=BA125
2 changes: 1 addition & 1 deletion Packs/Signum/Integrations/Signum/Signum.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ def test_module_command(client: Client, username: str, password: str, *_) -> tup
DemistoException: If test failed.
"""
results = client.test_module(username=username, password=password)
if results.get('status_code', None) == 200:
if results.status_code == 200: # type: ignore
return None, None, 'ok'
raise DemistoException(f'Test module failed, {results}')

Expand Down
4 changes: 2 additions & 2 deletions Packs/Signum/Integrations/Signum/Signum.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ script:
predefined:
- 'True'
- 'False'
description: 'List all the users for a given domain ID.'
description: 'List all the users for a given domain ID.'
name: signum-list-domain-users
outputs:
- contextPath: Signum.ListDomainUsers
description: The result of the signum-list-domain-users command.
dockerimage: demisto/python3:3.11.9.106008
dockerimage: demisto/python3:3.11.9.107902
runonce: false
script: ''
subtype: python3
Expand Down
Empty file.
6 changes: 6 additions & 0 deletions Packs/Signum/ReleaseNotes/1_0_1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@

#### Integrations

##### Signum

- Fixed an issue with ***test-module***, which caused error "Response" object has no attribute "get".
4 changes: 2 additions & 2 deletions Packs/Signum/pack_metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Signum",
"description": "To list all the users in a domain on Signum",
"support": "community",
"currentVersion": "1.0.0",
"currentVersion": "1.0.1",
"author": "davistonehub",
"url": "",
"email": "",
Expand All @@ -20,4 +20,4 @@
"githubUser": [
"davistonehub"
]
}
}

0 comments on commit ea7251d

Please sign in to comment.