Skip to content

Commit af499c8

Browse files
committed
fix(bigtable): add E402 to noqa comment in post-processing for admin __init__.py
1 parent 779d0b9 commit af499c8

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.librarian/generator-input/client-post-processing/bigtable-integration.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ replacements:
253253
"UpdateTableRequest",
254254
)
255255
256-
from .overlay import * # noqa: F403
256+
from .overlay import * # noqa: E402, F403
257257
258258
__all__ += overlay.__all__ # noqa: F405
259259
count: 1
@@ -265,8 +265,8 @@ replacements:
265265
"Type",
266266
)
267267
268-
import google.cloud.bigtable_admin_v2.overlay # noqa: F401
269-
from google.cloud.bigtable_admin_v2.overlay import * # noqa: F401, F403
268+
import google.cloud.bigtable_admin_v2.overlay # noqa: E402, F401
269+
from google.cloud.bigtable_admin_v2.overlay import * # noqa: E402, F401, F403
270270
271271
__all__ += google.cloud.bigtable_admin_v2.overlay.__all__
272272
count: 1

0 commit comments

Comments
 (0)