Skip to content

Commit

Permalink
Run black
Browse files Browse the repository at this point in the history
  • Loading branch information
tandemdude committed May 3, 2021
1 parent 1d153d1 commit ccee5ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lightbulb/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ async def handle_types(arg: str, type: typing.Any):
"""

if typing.get_origin(type) is typing.Union:
for typename in (types := typing.get_args(type)) :
for typename in (types := typing.get_args(type)):
try:
if typename is not None:
new_arg = await maybe_await(typename, arg)
Expand Down

0 comments on commit ccee5ab

Please sign in to comment.