Switch to importing hippolyzer.lib.base.templates

Should help deal with automatic template reloading issues since
mtime wasn't changing on `lib.proxy.templates`.
This commit is contained in:
Salad Dais
2021-06-01 08:23:33 +00:00
parent 69dd1ca9ce
commit fd747c9615
19 changed files with 24 additions and 24 deletions

View File

@@ -5,12 +5,7 @@ from typing import *
from hippolyzer.lib.base.legacy_inv import InventoryModel, InventoryItem
from hippolyzer.lib.base.message.message import Block
from hippolyzer.lib.proxy.addon_utils import BaseAddon, show_message
from hippolyzer.lib.proxy.commands import handle_command
from hippolyzer.lib.proxy.message import ProxiedMessage
from hippolyzer.lib.proxy.region import ProxiedRegion
from hippolyzer.lib.proxy.sessions import Session
from hippolyzer.lib.proxy.templates import (
from hippolyzer.lib.base.templates import (
AssetType,
EstateAssetType,
TransferRequestParamsSimEstate,
@@ -18,6 +13,11 @@ from hippolyzer.lib.proxy.templates import (
TransferSourceType,
XferFilePath,
)
from hippolyzer.lib.proxy.addon_utils import BaseAddon, show_message
from hippolyzer.lib.proxy.commands import handle_command
from hippolyzer.lib.proxy.message import ProxiedMessage
from hippolyzer.lib.proxy.region import ProxiedRegion
from hippolyzer.lib.proxy.sessions import Session
class TransferExampleAddon(BaseAddon):