Skip to content

Commit e797543

Browse files
committed
chore(enhancement): fix client-lint
1 parent 2848b98 commit e797543

File tree

3 files changed

+47
-3
lines changed

3 files changed

+47
-3
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#
2+
# Licensed to the Apache Software Foundation (ASF) under one
3+
# or more contributor license agreements. See the NOTICE file
4+
# distributed with this work for additional information
5+
# regarding copyright ownership. The ASF licenses this file
6+
# to you under the Apache License, Version 2.0 (the
7+
# "License"); you may not use this file except in compliance
8+
# with the License. You may obtain a copy of the License at
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
# Unless required by applicable law or agreed to in writing,
13+
# software distributed under the License is distributed on an
14+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
# KIND, either express or implied. See the License for the
16+
# specific language governing permissions and limitations
17+
# under the License.
18+
#
19+
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#
2+
# Licensed to the Apache Software Foundation (ASF) under one
3+
# or more contributor license agreements. See the NOTICE file
4+
# distributed with this work for additional information
5+
# regarding copyright ownership. The ASF licenses this file
6+
# to you under the Apache License, Version 2.0 (the
7+
# "License"); you may not use this file except in compliance
8+
# with the License. You may obtain a copy of the License at
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
# Unless required by applicable law or agreed to in writing,
13+
# software distributed under the License is distributed on an
14+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
# KIND, either express or implied. See the License for the
16+
# specific language governing permissions and limitations
17+
# under the License.
18+
#
19+

client/python/integration_tests/conftest.py

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -401,10 +401,16 @@ def _patch_generated_models() -> None:
401401
from apache_polaris.sdk.catalog.models.get_applicable_policies_response import (
402402
GetApplicablePoliciesResponse,
403403
)
404-
from apache_polaris.sdk.catalog.models.list_policies_response import ListPoliciesResponse
405-
from apache_polaris.sdk.catalog.models.load_policy_response import LoadPolicyResponse
404+
from apache_polaris.sdk.catalog.models.list_policies_response import (
405+
ListPoliciesResponse,
406+
)
407+
from apache_polaris.sdk.catalog.models.load_policy_response import (
408+
LoadPolicyResponse,
409+
)
406410
from apache_polaris.sdk.catalog.models.policy import Policy
407-
from apache_polaris.sdk.catalog.models.policy_attachment_target import PolicyAttachmentTarget
411+
from apache_polaris.sdk.catalog.models.policy_attachment_target import (
412+
PolicyAttachmentTarget,
413+
)
408414
from apache_polaris.sdk.catalog.models.policy_identifier import PolicyIdentifier
409415

410416
models_to_patch = {

0 commit comments

Comments
 (0)