Skip to content

Commit

Permalink
fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanljones committed Dec 29, 2023
1 parent 4d738fe commit 9dcaaf2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyrekordbox/db6/smart_playlist.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Date: 2023-12-13

import xml.etree.cElementTree as xml
from enum import StrEnum, IntEnum
from enum import Enum, IntEnum
from typing import List, Union
from datetime import datetime
from dataclasses import dataclass
Expand Down Expand Up @@ -41,7 +41,7 @@ class Operator(IntEnum):
ENDS_WITH = 11


class Property(StrEnum):
class Property(Enum):
ARTIST = "artist"
ALBUM = "album"
ALBUM_ARTIST = "albumartist"
Expand Down

0 comments on commit 9dcaaf2

Please sign in to comment.