Skip to content

Commit bf1386a

Browse files
committed
Adding magic encoding comment.
1 parent 544b8dc commit bf1386a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+83
-21
lines changed

intercom/__init__.py

Lines changed: 2 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -40,31 +40,15 @@
4040

4141
class IntercomType(type): # noqa
4242

43-
_app_id = None
44-
_app_api_key = None
43+
app_id = None
44+
app_api_key = None
4545
_hostname = "api.intercom.io"
4646
_protocol = "https"
4747
_endpoints = None
4848
_current_endpoint = None
4949
_target_base_url = None
5050
_endpoint_randomized_at = None
5151

52-
@property
53-
def app_id(self):
54-
return self._app_id
55-
56-
@app_id.setter
57-
def app_id(self, value):
58-
self._app_id = value
59-
60-
@property
61-
def app_api_key(self):
62-
return self._app_api_key
63-
64-
@app_api_key.setter
65-
def app_api_key(self, value):
66-
self._app_api_key = value
67-
6852
@property
6953
def _auth(self):
7054
return (self.app_id, self.app_api_key)

intercom/admin.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
from intercom.api_operations.all import All
24
from intercom.api_operations.find import Find
35
from intercom.traits.api_resource import Resource
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# -*- coding: utf-8 -*-

intercom/api_operations/all.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
from intercom import utils
24
from intercom.collection_proxy import CollectionProxy
35

intercom/api_operations/count.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
from intercom import utils
24

35

intercom/api_operations/delete.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
from intercom import utils
24

35

intercom/api_operations/find.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
from intercom import HttpError
24
from intercom import utils
35

intercom/api_operations/find_all.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
from intercom import utils
24
from intercom.collection_proxy import CollectionProxy
35

intercom/api_operations/load.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
from intercom import HttpError
24
from intercom import utils
35

intercom/api_operations/save.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
from intercom import utils
24

35

0 commit comments

Comments
 (0)