Skip to content

Commit

Permalink
fix: import wrong dataclass
Browse files Browse the repository at this point in the history
  • Loading branch information
jtpavlock committed Oct 9, 2022
1 parent 21340ed commit ee6959a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions moe/plugins/moe_import/import_core.py
Expand Up @@ -3,9 +3,9 @@
import itertools
import logging
import operator
from dataclasses import dataclass, field

import pluggy
from attr import dataclass

import moe
from moe import config
Expand Down Expand Up @@ -36,7 +36,7 @@ class CandidateAlbum:
album: Album
match_value: float
source_str: str
sub_header_info: list[str] = []
sub_header_info: list[str] = field(default_factory=list)

@property
def match_value_pct(self) -> str:
Expand Down

0 comments on commit ee6959a

Please sign in to comment.