Skip to content

Commit

Permalink
Fixed the lightweight sample
Browse files Browse the repository at this point in the history
  • Loading branch information
Ark-kun committed Sep 5, 2019
1 parent cee721b commit efc9fed
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
"#Advanced function\n",
"#Demonstrates imports, helper functions and multiple outputs\n",
"from typing import NamedTuple\n",
"def my_divmod(dividend: float, divisor:float) -> NamedTuple('MyDivmodOutput', [('quotient', float), ('remainder', float), ('mlpipeline_ui_metadata', 'UI_metadata'), ('mlpipeline_metrics', Metrics)]):\n",
"def my_divmod(dividend: float, divisor:float) -> NamedTuple('MyDivmodOutput', [('quotient', float), ('remainder', float), ('mlpipeline_ui_metadata', 'UI_metadata'), ('mlpipeline_metrics', 'Metrics')]):\n",
" '''Divides two numbers and calculate the quotient and remainder'''\n",
" #Pip installs inside a component function.\n",
" #NOTE: installs should be placed right at the beginning to avoid upgrading a package\n",
Expand Down

0 comments on commit efc9fed

Please sign in to comment.