SM: fix missing option import (#2326)
This commit is contained in:
parent
45e69f3d26
commit
e8a48da315
|
@ -1,18 +1,17 @@
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
import logging
|
|
||||||
import copy
|
|
||||||
import os
|
|
||||||
import threading
|
|
||||||
import base64
|
import base64
|
||||||
import settings
|
import copy
|
||||||
|
import logging
|
||||||
|
import threading
|
||||||
import typing
|
import typing
|
||||||
from typing import Any, Dict, Iterable, List, Set, TextIO, TypedDict
|
from typing import Any, Dict, Iterable, List, Set, TextIO, TypedDict
|
||||||
|
|
||||||
from BaseClasses import Region, Entrance, Location, MultiWorld, Item, ItemClassification, CollectionState, Tutorial
|
import settings
|
||||||
from Fill import fill_restrictive
|
from BaseClasses import CollectionState, Entrance, Item, ItemClassification, Location, MultiWorld, Region, Tutorial
|
||||||
from worlds.AutoWorld import World, AutoLogicRegister, WebWorld
|
from Options import Accessibility
|
||||||
from worlds.generic.Rules import set_rule, add_rule, add_item_rule
|
from worlds.AutoWorld import AutoLogicRegister, WebWorld, World
|
||||||
|
from worlds.generic.Rules import add_rule, set_rule
|
||||||
|
|
||||||
logger = logging.getLogger("Super Metroid")
|
logger = logging.getLogger("Super Metroid")
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue