Skip to content

Commit 8559900

Browse files
committed
revert hatch version due to dependency resolution bugs
1 parent 6f5902b commit 8559900

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/.hatch-run.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
with:
4444
python-version: ${{ matrix.python-version }}
4545
- name: Install Python Dependencies
46-
run: pip install --upgrade hatch uv
46+
run: pip install --upgrade hatch<1.16 uv
4747
- name: Run Scripts
4848
env:
4949
NPM_CONFIG_TOKEN: ${{ secrets.node-auth-token }}

src/reactpy/core/vdom.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ def separate_attributes_and_children(
217217

218218
_attributes: VdomAttributes
219219
children_or_iterables: Sequence[Any]
220-
if type(values[0]) is dict:
220+
if type(values[0]) is dict: # noqa: E721
221221
_attributes, *children_or_iterables = values
222222
else:
223223
_attributes = {}

0 commit comments

Comments
 (0)