Skip to content

Commit 1941887

Browse files
committed
Moving Segment to it's own module.
1 parent 8757861 commit 1941887

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

intercom/segment.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
from intercom.user import Resource
2+
from intercom.api_operations.count import Count
3+
from intercom.api_operations.find import Find
4+
5+
class Segment(Resource, Find, Count):
6+
pass

intercom/user.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -146,9 +146,6 @@ class Tag(Resource, Find, Count):
146146
pass
147147

148148

149-
class Segment(Resource, Find, Count):
150-
pass
151-
152149

153150
class Note(Resource, Find):
154151
pass

0 commit comments

Comments
 (0)