From: kaliko Date: Sat, 4 Dec 2021 11:24:59 +0000 (+0100) Subject: Cleanup some imports X-Git-Tag: 0.18.1~6 X-Git-Url: https://git.kaliko.me/?a=commitdiff_plain;h=8cde5a5e329e5f60bb6847a819ff9eae2e063014;p=mpd-sima.git Cleanup some imports --- diff --git a/doc/source/conf.py b/doc/source/conf.py index 2b847f1..d051efa 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -13,10 +13,6 @@ # All configuration values have a default; values that are commented out # serve to show the default. -import sys -import os - - # 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 # documentation root, use os.path.abspath to make it absolute, like shown here. diff --git a/setup.py b/setup.py index 6e99e6c..0296125 100755 --- a/setup.py +++ b/setup.py @@ -3,9 +3,9 @@ import glob -from setuptools import setup, find_packages # >= 2.0.2 from os import listdir from os.path import isfile +from setuptools import setup, find_packages # >= 2.0.2 from sima.info import __version__ as VERSION, __author__ as AUTHOR from sima.info import __doc__ as DESCRIPTION, __email__ as EMAIL