Skip to content

Commit b8b2766

Browse files
committed
Make pylint ignore the 'gcloud/_apitools' modules until cleanups done.
1 parent d2e4f99 commit b8b2766

7 files changed

Lines changed: 6 additions & 2 deletions

File tree

gcloud/_apitools/buffered_stream.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# pylint: skip-file
12
"""Small helper class to provide a small slice of a stream.
23
34
This class reads ahead to detect if we are at the end of the stream.

gcloud/_apitools/exceptions.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# pylint: skip-file
12
"""Exceptions for generated client libraries."""
23

34

gcloud/_apitools/http_wrapper.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# pylint: skip-file
12
"""HTTP wrapper for apitools.
23
34
This library wraps the underlying http library we use, which is

gcloud/_apitools/stream_slice.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# pylint: skip-file
12
"""Small helper class to provide a small slice of a stream."""
23

34
from gcloud._apitools import exceptions

gcloud/_apitools/transfer.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# pylint: skip-file
12
"""Upload and download support for apitools."""
23
from __future__ import print_function
34

gcloud/_apitools/util.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# pylint: skip-file
12
"""Assorted utilities shared between parts of apitools.
23
34
Pruned to include only helpers used by other vendored-in modules:

pylintrc_default

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,8 @@
2929
# os.walk in astroid.modutils.get_module_files.
3030
# RATIONALE:
3131
# _datastore_v1_pb2.py: protobuf-generated code.
32-
# gcloud/_apitools: vendored-in code (remove when cleaned up)
3332
ignore =
3433
_datastore_v1_pb2.py
35-
gcloud/_apitools
3634

3735
# Pickle collected data for later comparisons.
3836
# DEFAULT: persistent=yes

0 commit comments

Comments
 (0)