Skip to content

Commit 26c175c

Browse files
miikechuwy
authored andcommitted
Add additional supported platforms to Subject (close snowplow#172)
1 parent cfc4229 commit 26c175c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

snowplow_tracker/subject.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
from contracts import contract, new_contract
2323

24-
SUPPORTED_PLATFORMS = set(["pc", "tv", "mob", "cnsl", "iot"])
24+
SUPPORTED_PLATFORMS = set(["pc", "tv", "mob", "cnsl", "iot", "web", "srv", "app"])
2525
DEFAULT_PLATFORM = "pc"
2626

2727
new_contract("subject", lambda x: isinstance(x, Subject))
@@ -41,7 +41,7 @@ def __init__(self):
4141
@contract
4242
def set_platform(self, value):
4343
"""
44-
:param value: One of ["pc", "tv", "mob", "cnsl", "iot"]
44+
:param value: One of ["pc", "tv", "mob", "cnsl", "iot", "web", "srv", "app"]
4545
:type value: supported_platform
4646
:rtype: subject
4747
"""

0 commit comments

Comments
 (0)