Skip to content

Commit

Permalink
Fix style errors
Browse files Browse the repository at this point in the history
  • Loading branch information
daviskirk committed Apr 22, 2018
1 parent 60d5b74 commit 5e241d3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion climatecontrol/logtools.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
},
'root': {
'level': 'INFO',
'handlers': ["console"]
'handlers': ['console']
}
}

Expand Down
3 changes: 2 additions & 1 deletion climatecontrol/settings_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,8 @@ def parse(self, data: Mapping) -> Dict:
data: Raw mapping to be parsed
Returns:
Parsed data that has run through all preparsers and the `Settings`
Parsed data that has run through all preparsers and the `Settings`.
"""
for preparser in self.preparsers:
data = preparser(data)
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ def read(fname):
setup(
name='climatecontrol',
use_scm_version=True,
description="Python library for loading app configurations from files and/or namespaced environment variables",
description='Python library for loading app configurations from files and/or namespaced environment variables',
long_description=read('README.rst'),
author="Davis Kirkendall",
author='Davis Kirkendall',
author_email='davis.e.kirkendall@gmail.com',
url='https://github.com/daviskirk/climatecontrol',
packages=[
Expand All @@ -45,7 +45,7 @@ def read(fname):
package_dir={'climatecontrol': 'climatecontrol'},
include_package_data=True,
install_requires=requirements,
license="MIT",
license='MIT',
zip_safe=False,
keywords='climatecontrol',
classifiers=[
Expand Down

0 comments on commit 5e241d3

Please sign in to comment.