From 47d0465a215643598f328b02ceac0450f75dddd2 Mon Sep 17 00:00:00 2001 From: Marcin Rudolf Date: Tue, 3 Oct 2023 20:24:06 +0200 Subject: [PATCH] fixes mypy --- docs/examples/incremental_loading/.dlt/secrets.toml | 4 +--- .../docs/examples/incremental_loading/code/.dlt/secrets.toml | 2 -- mypy.ini | 2 +- 3 files changed, 2 insertions(+), 6 deletions(-) diff --git a/docs/examples/incremental_loading/.dlt/secrets.toml b/docs/examples/incremental_loading/.dlt/secrets.toml index ef92b9453e..4dec919c06 100644 --- a/docs/examples/incremental_loading/.dlt/secrets.toml +++ b/docs/examples/incremental_loading/.dlt/secrets.toml @@ -1,6 +1,4 @@ [sources.zendesk.credentials] password = "" subdomain = "" -token = "" -email = "" -oauth_token = "" \ No newline at end of file +email = "" \ No newline at end of file diff --git a/docs/website/docs/examples/incremental_loading/code/.dlt/secrets.toml b/docs/website/docs/examples/incremental_loading/code/.dlt/secrets.toml index 466c5f7669..caf8d523c4 100644 --- a/docs/website/docs/examples/incremental_loading/code/.dlt/secrets.toml +++ b/docs/website/docs/examples/incremental_loading/code/.dlt/secrets.toml @@ -2,7 +2,5 @@ [sources.zendesk.credentials] password = "" subdomain = "" -token = "" email = "" -oauth_token = "" # @@@DLT_SNIPPET_END example diff --git a/mypy.ini b/mypy.ini index 050e2fe0ac..924bc7c48b 100644 --- a/mypy.ini +++ b/mypy.ini @@ -11,7 +11,7 @@ namespace_packages=true warn_unused_ignores=true show_error_codes=true #exclude=reflection/module_cases/* -exclude=docs/examples/archive/* +exclude=docs/examples/archive/*|tests/reflection/module_cases/* [mypy-tests.*] disallow_untyped_defs=false