Skip to content

Commit

Permalink
Fix DLCQuest Errors Generating on Latest Source, without any DLCQuest…
Browse files Browse the repository at this point in the history
… YAMLs (ArchipelagoMW#1704)
  • Loading branch information
axe-y authored Apr 14, 2023
1 parent f0324e6 commit 054d14b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions worlds/dlcquest/Items.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import csv
import enum
import math
from typing import Protocol, Union, Dict, List
from typing import Protocol, Union, Dict, List, Set
from BaseClasses import Item, ItemClassification
from . import Options, data
from dataclasses import dataclass, field
Expand Down Expand Up @@ -29,7 +29,7 @@ class ItemData:
code_without_offset: offset
name: str
classification: ItemClassification
groups: set[Group] = field(default_factory=frozenset)
groups: Set[Group] = field(default_factory=frozenset)

def __post_init__(self):
if not isinstance(self.groups, frozenset):
Expand Down

0 comments on commit 054d14b

Please sign in to comment.