Skip to content

Commit ffdb07a

Browse files
committed
Moving __version__ attribute.
1 parent 94efcb9 commit ffdb07a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

intercom/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
from .errors import ArgumentError
33
from .lib.setter_property import SetterProperty
44

5-
__version__ = '2.0-alpha'
6-
75
import copy
86
import json
97
import random
108
import re
119
import requests
1210
import time
1311

12+
__version__ = '2.0-alpha'
13+
1414

1515
RELATED_DOCS_TEXT = "See https://github.com/jkeyes/python-intercom for usage examples."
1616
COMPATIBILITY_WARNING_TEXT = "It looks like you are upgrading from an older version of python-intercom. Please note that this new version (%s) is not backwards compatible." % (__version__)

0 commit comments

Comments
 (0)