diff options
author | Omer Katz <omerk@checkpoint.com> | 2017-09-17 14:14:31 +0300 |
---|---|---|
committer | Omer Katz <omerk@checkpoint.com> | 2017-09-17 14:14:31 +0300 |
commit | 0218f8da4f6405c6a38ea7e01feacf73b35dd698 (patch) | |
tree | 7497e617e696a96eb7d66fadf9c933394b12a05d /docs/conf.py | |
parent | c00a194e2986e75da4acf05ec413ab21cb6d46da (diff) | |
download | oauthlib-0218f8da4f6405c6a38ea7e01feacf73b35dd698.tar.gz |
Sorted imports.
Diffstat (limited to 'docs/conf.py')
-rw-r--r-- | docs/conf.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/conf.py b/docs/conf.py index f62d304..fb14d05 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -11,7 +11,10 @@ # All configuration values have a default; values that are commented out # serve to show the default. -import sys, os +import os +import sys + +from oauthlib import __version__ as v # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the @@ -48,7 +51,6 @@ copyright = u'2012, Idan Gazit and the Python Community' # # The short X.Y version. -from oauthlib import __version__ as v version = v[:3] # The full version, including alpha/beta/rc tags. release = v |