From 6c07405dd2d0d02ab25941ff0f562952fc1aa5e5 Mon Sep 17 00:00:00 2001 From: Davin Chia Date: Fri, 14 May 2021 09:30:02 +0800 Subject: [PATCH 1/2] Correct GA readme error. --- docs/integrations/sources/googleanalytics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integrations/sources/googleanalytics.md b/docs/integrations/sources/googleanalytics.md index 1eacce120cd5..bfb83521604e 100644 --- a/docs/integrations/sources/googleanalytics.md +++ b/docs/integrations/sources/googleanalytics.md @@ -69,7 +69,7 @@ You can replicate Google Analytics [Custom Reports](https://support.google.com/a Here is an example input "Custom Reports" field: ```text -[{"Name": "new_users_per_day"}, {"dimensions": ["ga:date"], "metrics": ["ga:newUsers"]}, {"Name": "users_per_city"}, {"dimensions": ["ga:city"], "metrics": ["ga:users"]}] +[{"name": "new_users_per_day", "dimensions": ["ga:date","ga:country","ga:region"], "metrics": ["ga:newUsers"]}, {"name": "users_per_city", "dimensions": ["ga:city"], "metrics": ["ga:users"]}] ``` To create a list of dimensions, you can use default GA dimensions \(listed below\) or custom dimensions if you have some defined. Each report can contain no more than 7 dimensions, and they must all be unique. The default GA dimensions are: From 17aabed168679a22fdd68d711e26efce146f3144 Mon Sep 17 00:00:00 2001 From: Davin Chia Date: Fri, 14 May 2021 09:46:42 +0800 Subject: [PATCH 2/2] Format. --- .../connectors/source-stripe/integration_tests/acceptance.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/airbyte-integrations/connectors/source-stripe/integration_tests/acceptance.py b/airbyte-integrations/connectors/source-stripe/integration_tests/acceptance.py index 93e676b217a3..d98ac8aa3a1c 100644 --- a/airbyte-integrations/connectors/source-stripe/integration_tests/acceptance.py +++ b/airbyte-integrations/connectors/source-stripe/integration_tests/acceptance.py @@ -1,3 +1,4 @@ +# # MIT License # # Copyright (c) 2020 Airbyte @@ -19,6 +20,7 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. +# import pytest