fix(loadout): add missing Nexus imports
- NexusAttachment, NexusEnhancer, NexusRing, NexusClothing, NexusPet
This commit is contained in:
parent
ad9cd2cd4c
commit
48bce51d0f
|
|
@ -25,7 +25,10 @@ from PyQt6.QtCore import Qt, pyqtSignal, QThread
|
|||
from PyQt6.QtGui import QFont
|
||||
|
||||
from core.nexus_api import EntropiaNexusAPI, WeaponStats, ArmorStats, FinderStats
|
||||
from core.nexus_full_api import get_nexus_api, NexusArmor, NexusHealingTool, NexusPlate
|
||||
from core.nexus_full_api import (
|
||||
get_nexus_api, NexusArmor, NexusHealingTool, NexusPlate,
|
||||
NexusAttachment, NexusEnhancer, NexusRing, NexusClothing, NexusPet
|
||||
)
|
||||
from core.attachments import (
|
||||
Attachment, WeaponAmplifier, WeaponScope, WeaponAbsorber,
|
||||
ArmorPlating, Enhancer, can_attach, get_mock_attachments
|
||||
|
|
|
|||
Loading…
Reference in New Issue