Skip to content

Commit

Permalink
fix variadic
Browse files Browse the repository at this point in the history
  • Loading branch information
mrocklin committed Jun 27, 2023
1 parent fc1111e commit 145074f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions multipledispatch/variadic.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .utils import typename
from multipledispatch.utils import typename


class VariadicSignatureType(type):
Expand Down Expand Up @@ -74,7 +74,7 @@ def __getitem__(self, variadic_type):
)


class Variadic(metaclass(VariadicSignatureMeta)):
class Variadic(metaclass=VariadicSignatureMeta):
"""A class whose getitem method can be used to generate a new type
representing a specific variadic signature.
Expand Down

0 comments on commit 145074f

Please sign in to comment.