Skip to content

Commit

Permalink
update build
Browse files Browse the repository at this point in the history
  • Loading branch information
mourtallah committed Mar 1, 2022
1 parent f16e84b commit 5b235f0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions build/lib/dataEng_container_tools/cla.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,14 +291,9 @@ def __init__(self,
for item in custom_inputs:
if item.action:
parser.add_argument("--" + item.name,
action=item.action,
const=item.const,
default=item.default,
type=item.data_type,
required=item.required,
help=item.help_message,
metavar=item.metavar,
dest=item.dest)
action=item.action,
help=item.help_message)
else:
parser.add_argument("--" + item.name,
nargs=item.nargs,
Expand Down Expand Up @@ -371,7 +366,7 @@ def get_output_uris(self):
Returns:
A list of all output URIs passed in through the command line. URIs
are of the format 'gs://bucket_name/input_path/filename'.
are of the format 'gs://bucket_name/output_path/filename'.
"""
if not self.__output_files:
return []
Expand Down
Binary file added dist/dataEng_container_tools-0.5.7-py3.8.egg
Binary file not shown.

0 comments on commit 5b235f0

Please sign in to comment.