Skip to content

Commit

Permalink
Fixed for pip8
Browse files Browse the repository at this point in the history
  • Loading branch information
gaurav-chawla committed Sep 29, 2016
1 parent 7c9fd46 commit c2afdde
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ htmlcov
junit_report.xml
run_all_tests.sh
solnlib.egg-info/

venv/*
*.log
tools/solution_lib_release_env/*
tools/solution_lib_release_env/*
6 changes: 4 additions & 2 deletions solnlib/api_documenter.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@
>>> @api_operation(http_method='put',\
description='Create a new record.', action='create')
>>> @api_body_param(is_model_class_used=True, ref='Example', is_list=False)
>>> @api_body_param(is_model_class_used=True, ref='Example',\
is_list=False)
>>> @api_response(code=200, ref='Example', is_list=False)
>>> @api_response(code=400)
>>> def handle_PUT(self):
Expand All @@ -64,7 +65,8 @@
>>> @api_operation(http_method='post',\
description='update existing record by id', action='update')
>>> @api_path_param()
>>> @api_body_param(is_model_class_used=True, ref='Example', is_list=False)
>>> @api_body_param(is_model_class_used=True, ref='Example',\
is_list=False)
>>> @api_response(code=200, ref='Example', is_list=False)
>>> @api_response(code=400)
>>> def handle_POST(self):
Expand Down

0 comments on commit c2afdde

Please sign in to comment.