Fix Ruff UP013 (convert-typed-dict-functional-to-class)

Apparently `type` is okay and doesn't break things in even in Python 3.12
This commit is contained in:
Andrej730
2025-07-11 10:46:17 +05:00
parent 0fcc47508a
commit e1976d5bfd
@@ -19,19 +19,12 @@ import ifcopenshell
from typing import Any, TypedDict, Literal, Union
AttributeDict = TypedDict(
"AttributeDict",
{
"type": Union[
Literal[
"string",
"null",
],
str, # IFC Class.
],
"value": Any,
},
)
class AttributeDict(TypedDict):
type: Union[
Literal["string", "null"],
str, # IFC Class.
]
value: Any
def edit_structural_boundary_condition(