From b3bbcf8dfbed94284c97ed13f2b1480953a25552 Mon Sep 17 00:00:00 2001 From: noah morrison Date: Tue, 18 Nov 2014 16:51:49 -0500 Subject: [PATCH] pep8 --- chevron/chevron.py | 1 + setup.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/chevron/chevron.py b/chevron/chevron.py index 812106b..921d8ee 100755 --- a/chevron/chevron.py +++ b/chevron/chevron.py @@ -393,6 +393,7 @@ def main(data, template, **kwargs): args.update(kwargs) return render(**args) + def cli_main(): try: print(main(argv[1], argv[2])) diff --git a/setup.py b/setup.py index 3e51510..5d282a8 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup(name='chevron', author_email='noah@morrison.ph', url='https://github.com/noahmorrison/chevron', packages=['chevron'], - entry_points = { + entry_points={ 'console_scripts': ['chevron=chevron:cli_main'] } - ) + ) -- 2.47.3