Skip to content

Commit

Permalink
Fix lint error
Browse files Browse the repository at this point in the history
Signed-off-by: ddl-rliu <richard.liu@dominodatalab.com>
  • Loading branch information
ddl-rliu committed Jun 27, 2024
1 parent 8240ea2 commit fd6a5d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flytekit/core/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def __init__(
if inputs:
for k, v in inputs.items():
if not k.isidentifier():
raise ValueError(f'Input name must be valid Python identifier: {k!r}')
raise ValueError(f"Input name must be valid Python identifier: {k!r}")
if type(v) is tuple and len(cast(Tuple, v)) > 1:
self._inputs[k] = v # type: ignore
else:
Expand Down

0 comments on commit fd6a5d7

Please sign in to comment.