Skip to content

Commit b611da6

Browse files
committed
remove quotes that should not be there
1 parent a76a4a2 commit b611da6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

utils/convert-v2-to-v3/convert.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def convert_savedmodel_to_keras(savedmodel_dir: str, output_directory: str, cust
8989
parser = argparse.ArgumentParser(description="Convert Keras SavedModel to .keras format.")
9090
parser.add_argument("--savedmodel_dir", type=str, required=True, help="Path to the SavedModel directory.")
9191
parser.add_argument("--output_directory", type=str, required=False, help="Path to the output directory for the converted model. Default: converted_model/", default="converted_model")
92-
parser.add_argument("--output_file", type=str, required=False, help="for backwards compatibility, not used anymore", default="None")
92+
parser.add_argument("--output_file", type=str, required=False, help="for backwards compatibility, not used anymore", default=None)
9393

9494
args = parser.parse_args()
9595

0 commit comments

Comments
 (0)