forgot to undo changes after moving web UI code out to its own module/tool

forgot to remove changes done to csv module and search tool after moving web UI to its own module/tool
changes such as:
unused imports
panel header option
This commit is contained in:
Ziad-I
2024-06-18 10:59:13 +03:00
committed by Dion Moult
parent bd30f73b3a
commit b90c1ee7c9
3 changed files with 1 additions and 8 deletions
@@ -24,7 +24,6 @@ import logging
import tempfile import tempfile
import ifcopenshell import ifcopenshell
import ifcopenshell.util.selector import ifcopenshell.util.selector
import blenderbim.core.search as core
import blenderbim.tool as tool import blenderbim.tool as tool
import blenderbim.bim.module.drawing.scheduler as scheduler import blenderbim.bim.module.drawing.scheduler as scheduler
from blenderbim.bim.ifc import IfcStore from blenderbim.bim.ifc import IfcStore
@@ -25,7 +25,7 @@ from blenderbim.bim.module.search.data import SearchData
class BIM_PT_ifccsv(Panel): class BIM_PT_ifccsv(Panel):
bl_label = "Spreadsheet Import/Export" bl_label = "Spreadsheet Import/Export"
bl_idname = "BIM_PT_ifccsv" bl_idname = "BIM_PT_ifccsv"
bl_options = {"DEFAULT_CLOSED", "HEADER_LAYOUT_EXPAND"} bl_options = {"DEFAULT_CLOSED"}
bl_space_type = "PROPERTIES" bl_space_type = "PROPERTIES"
bl_region_type = "WINDOW" bl_region_type = "WINDOW"
bl_context = "scene" bl_context = "scene"
-6
View File
@@ -6,12 +6,6 @@ import ifcopenshell.guid
import ifcopenshell.util.selector import ifcopenshell.util.selector
from blenderbim.bim.prop import BIMFacet from blenderbim.bim.prop import BIMFacet
from typing import Union, Literal from typing import Union, Literal
import os
import webbrowser
import asyncio
import threading
import websockets
import json
class Search(blenderbim.core.tool.Search): class Search(blenderbim.core.tool.Search):