Skip to content

Commit

Permalink
fix: fixed pylint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
anaik91 committed Aug 23, 2023
1 parent 541877d commit f05d807
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tools/proxy-endpoint-unifier/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@

import os
import sys
from apigee import Apigee
import utils
from apigee import Apigee # pylint: disable=import-error
import utils # pylint: disable=import-error


def main():
Expand Down
4 changes: 2 additions & 2 deletions tools/target-server-validator/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

import os
import sys
from utils import (
from utils import ( # pylint: disable=import-error
parse_config,
create_proxy_bundle,
run_validator_proxy,
Expand All @@ -32,7 +32,7 @@
get_tes,
get_row_host_port,
)
from apigee import Apigee
from apigee import Apigee # pylint: disable=import-error


def main():
Expand Down

0 comments on commit f05d807

Please sign in to comment.