infra: rm unused # noqa violations (#22049)

Updating #21137
This commit is contained in:
Bagatur
2024-05-22 15:21:08 -07:00
committed by GitHub
parent 45ed5f3f51
commit 50186da0a1
149 changed files with 212 additions and 214 deletions

View File

@@ -41,7 +41,7 @@ index_settings = {
response = client.indices.create(index=OPENSEARCH_INDEX_NAME, body=index_settings)
print(response) # noqa: T201
print(response)
# Insert docs
@@ -57,4 +57,4 @@ for each in docs:
response = client.index(index=OPENSEARCH_INDEX_NAME, body=document, refresh=True)
print(response) # noqa: T201
print(response)