source/aws/services/organizations.py [77:86]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                    NextToken=next_token
                )
                self.logger.info("Extending Account List")
                account_list.extend(response.get('Accounts', []))
                next_token = response.get('NextToken', None)

            return account_list
        except ClientError as e:
            self.logger.log_unhandled_exception(e)
            raise
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



source/aws/services/organizations.py [107:116]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                    NextToken=next_token
                )
                self.logger.info("Extending Account List")
                account_list.extend(response.get('Accounts', []))
                next_token = response.get('NextToken', None)

            return account_list
        except ClientError as e:
            self.logger.log_unhandled_exception(e)
            raise
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



