You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2021/01/02 10:32:52 UTC

[airflow] branch master updated: Fixed failing pylint errors introduced in #13403 (#13429)

This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/master by this push:
     new 6e1a6ff  Fixed failing pylint errors introduced in #13403 (#13429)
6e1a6ff is described below

commit 6e1a6ff3c8a4f8f9bcf8b7601362359bfb2be6bf
Author: Jarek Potiuk <ja...@polidea.com>
AuthorDate: Sat Jan 2 11:32:42 2021 +0100

    Fixed failing pylint errors introduced in #13403 (#13429)
    
    This fixes a failing pylint error introduced in #13403. This error
    also trigger another pylint problem involved with c-extension
---
 docs/publish_docs.py                                         | 2 +-
 tests/providers/google/cloud/transfers/test_oracle_to_gcs.py | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/publish_docs.py b/docs/publish_docs.py
index d19d327..70ed701 100755
--- a/docs/publish_docs.py
+++ b/docs/publish_docs.py
@@ -89,7 +89,7 @@ def main():
         print(f" - {pkg}")
     print()
     for package_name in current_packages:
-        builder = AirflowDocsBuilder(package_name=package_name, for_production=True)
+        builder = AirflowDocsBuilder(package_name=package_name, for_production=True, verbose=False)
         builder.publish()
 
 
diff --git a/tests/providers/google/cloud/transfers/test_oracle_to_gcs.py b/tests/providers/google/cloud/transfers/test_oracle_to_gcs.py
index 03f81d7..b91dbd6 100644
--- a/tests/providers/google/cloud/transfers/test_oracle_to_gcs.py
+++ b/tests/providers/google/cloud/transfers/test_oracle_to_gcs.py
@@ -15,7 +15,7 @@
 # KIND, either express or implied.  See the License for the
 # specific language governing permissions and limitations
 # under the License.
-
+# pylint: disable=c-extension-no-member
 import unittest
 from unittest import mock