Fixes typo of dicionaries to dictionaries (#53505)

This commit is contained in:
Shivam Singhal 2019-03-08 11:58:39 +05:30 committed by René Moser
parent 3bc474bf99
commit f08a26d77b
2 changed files with 3 additions and 3 deletions

View file

@ -364,7 +364,7 @@ class InventoryModule(BaseInventoryPlugin, Constructable, Cacheable):
def _get_instances_by_region(self, regions, filters, strict_permissions): def _get_instances_by_region(self, regions, filters, strict_permissions):
''' '''
:param regions: a list of regions in which to describe instances :param regions: a list of regions in which to describe instances
:param filters: a list of boto3 filter dicionaries :param filters: a list of boto3 filter dictionaries
:param strict_permissions: a boolean determining whether to fail or ignore 403 error codes :param strict_permissions: a boolean determining whether to fail or ignore 403 error codes
:return A list of instance dictionaries :return A list of instance dictionaries
''' '''

View file

@ -166,8 +166,8 @@ class InventoryModule(BaseInventoryPlugin, Constructable, Cacheable):
def _get_all_hosts(self, regions, instance_filters, cluster_filters, strict, statuses, gather_clusters=False): def _get_all_hosts(self, regions, instance_filters, cluster_filters, strict, statuses, gather_clusters=False):
''' '''
:param regions: a list of regions in which to describe hosts :param regions: a list of regions in which to describe hosts
:param instance_filters: a list of boto3 filter dicionaries :param instance_filters: a list of boto3 filter dictionaries
:param cluster_filters: a list of boto3 filter dicionaries :param cluster_filters: a list of boto3 filter dictionaries
:param strict: a boolean determining whether to fail or ignore 403 error codes :param strict: a boolean determining whether to fail or ignore 403 error codes
:param statuses: a list of statuses that the returned hosts should match :param statuses: a list of statuses that the returned hosts should match
:return A list of host dictionaries :return A list of host dictionaries