Skip to content

Commit

Permalink
fix(sdk): Remove print statement for compiler to reduce log size (#1198)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomcli authored Mar 30, 2023
1 parent 89ccf0b commit 1f24ba5
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions sdk/python/kfp_tekton/compiler/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
from kfp_tekton.compiler.pipeline_utils import TektonPipelineConf

from . import TektonCompiler
from .. import __version__


def parse_arguments():
Expand Down Expand Up @@ -86,7 +85,6 @@ def compile_pyfile(pyfile, function_name, output_path, type_check, tekton_pipeli


def main():
print(f"KFP-Tekton Compiler {__version__}")
args = parse_arguments()
if ((args.py is None and args.package is None) or
(args.py is not None and args.package is not None)):
Expand Down

0 comments on commit 1f24ba5

Please sign in to comment.