Skip to content

Commit

Permalink
Remove some unwanted docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean Hammond committed May 20, 2012
1 parent 2053a20 commit 0e28352
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions ckan/logic/action/get.py
Expand Up @@ -833,11 +833,6 @@ def user_show(context, data_dict):
return user_dict

def package_show_rest(context, data_dict):
'''Return the metadata of a dataset (package) and its resources.
For parameters see package show.
'''
_check_access('package_show_rest',context, data_dict)

logic.get_action('package_show')(context, data_dict)
Expand All @@ -849,11 +844,6 @@ def package_show_rest(context, data_dict):
return package_dict

def group_show_rest(context, data_dict):
'''Return a group.
For parameters see group_show.
'''
_check_access('group_show_rest',context, data_dict)

logic.get_action('group_show')(context, data_dict)
Expand All @@ -864,13 +854,6 @@ def group_show_rest(context, data_dict):
return group_dict

def tag_show_rest(context, data_dict):
'''Return a list of the IDs of the datasets that belong to a tag.
For parameters see tag_show.
:rtype: list of strings
'''
_check_access('tag_show_rest',context, data_dict)

logic.get_action('tag_show')(context, data_dict)
Expand Down

0 comments on commit 0e28352

Please sign in to comment.