Skip to content

Commit

Permalink
Fix Match[str] issue on Python3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
snejus committed Mar 18, 2024
1 parent ba7a3ba commit 6a76616
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion beetsplug/bandcamp/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ class MediaInfo(NamedTuple):
CAMELCASE = re.compile(r"(?<=[a-z])(?=[A-Z])")


def split_artist_title(m: re.Match[str]) -> str:
def split_artist_title(m: re.Match) -> str:
"""See for yourself.
https://examine-archive.bandcamp.com/album/va-examine-archive-international-sampler-xmn01
Expand Down

0 comments on commit 6a76616

Please sign in to comment.