diff --git a/octavia-cli/build.gradle b/octavia-cli/build.gradle index 17a89cc80e3a..5416dee993ca 100644 --- a/octavia-cli/build.gradle +++ b/octavia-cli/build.gradle @@ -15,4 +15,4 @@ task generateApiClient(type: Exec) { blackFormat.dependsOn generateApiClient isortFormat.dependsOn generateApiClient flakeCheck.dependsOn generateApiClient -installReqs.dependsOn generateApiClient \ No newline at end of file +installReqs.dependsOn generateApiClient diff --git a/octavia-cli/unit_tests/test_entrypoint.py b/octavia-cli/unit_tests/test_entrypoint.py index 018d67e74d5c..61ccc5b75c10 100644 --- a/octavia-cli/unit_tests/test_entrypoint.py +++ b/octavia-cli/unit_tests/test_entrypoint.py @@ -1,6 +1,7 @@ # # Copyright (c) 2021 Airbyte, Inc., all rights reserved. # + from unittest import mock import click diff --git a/tools/python/.flake8 b/tools/python/.flake8 index c42be02af260..b07e01f847ba 100644 --- a/tools/python/.flake8 +++ b/tools/python/.flake8 @@ -5,7 +5,7 @@ exclude = .eggs # python libraries" .tox build - airbyte_api_client # generated api client + airbyte_api_client # generated api client in octavia-cli extend-ignore = E203, # whitespace before ':' (conflicts with Black) E231, # Bad trailing comma (conflicts with Black)