Skip to content

Commit

Permalink
Merge branch 'master' into create_with
Browse files Browse the repository at this point in the history
  • Loading branch information
macbre committed Jun 9, 2021
2 parents 6360a5a + bb9c36d commit 88e4869
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sql_metadata/utils.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Module with various utils
"""
from typing import Any, List
from typing import Any, List, Sequence


class UniqueList(list):
Expand All @@ -13,7 +13,7 @@ def append(self, item: Any) -> None:
if item not in self:
super().append(item)

def extend(self, items: Any) -> None:
def extend(self, items: Sequence[Any]) -> None:
for item in items:
self.append(item)

Expand Down

0 comments on commit 88e4869

Please sign in to comment.