Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Write the date in place of the "Unreleased" in the case a new version is release
### Changed

- Typehint utils collection implementations
- Typehint Structure types

## v0.1.0-b35 (2025-08-20)

Expand Down
7 changes: 4 additions & 3 deletions tiled/client/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from copy import copy, deepcopy
from dataclasses import asdict
from pathlib import Path
from typing import Dict, List, Union
from typing import Dict, List, Optional, Union
from urllib.parse import parse_qs, urlparse

import json_merge_patch
Expand All @@ -11,6 +11,7 @@
from httpx import URL

from tiled.client.context import Context
from tiled.structures.root import Structure

from ..structures.core import STRUCTURE_TYPES, Spec, StructureFamily
from ..structures.data_source import DataSource
Expand Down Expand Up @@ -131,8 +132,8 @@ def __init__(
*,
item,
structure_clients,
structure=None,
include_data_sources=False,
structure: Optional[Structure] = None,
include_data_sources: bool = False,
):
self._context = context
self._item = item
Expand Down
Loading
Loading