Skip to content

Commit 60f627a

Browse files
committed
Moving Company to it's own module.
1 parent 55ca9f7 commit 60f627a

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

intercom/company.py

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

intercom/user.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -134,9 +134,5 @@ def flat_store_attributes(self):
134134
return ['custom_attributes']
135135

136136

137-
class Company(Resource, Find, Count):
138-
pass
139-
140-
141137
# class Count(Resource):
142138
# pass

0 commit comments

Comments
 (0)