()
| 13 | |
| 14 | |
| 15 | def get_google_credentials(): |
| 16 | config = get_configuration() |
| 17 | if not config: |
| 18 | return None, None |
| 19 | google_account_email = config.get('Credentials', 'google_account_email') |
| 20 | google_account_password = config.get('Credentials', 'google_account_password') |
| 21 | return google_account_email, google_account_password |
| 22 | |
| 23 | |
| 24 | def get_valid_profiles(): |
nothing calls this directly
no test coverage detected