We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f5902b commit 8559900Copy full SHA for 8559900
.github/workflows/.hatch-run.yml
@@ -43,7 +43,7 @@ jobs:
43
with:
44
python-version: ${{ matrix.python-version }}
45
- name: Install Python Dependencies
46
- run: pip install --upgrade hatch uv
+ run: pip install --upgrade hatch<1.16 uv
47
- name: Run Scripts
48
env:
49
NPM_CONFIG_TOKEN: ${{ secrets.node-auth-token }}
src/reactpy/core/vdom.py
@@ -217,7 +217,7 @@ def separate_attributes_and_children(
217
218
_attributes: VdomAttributes
219
children_or_iterables: Sequence[Any]
220
- if type(values[0]) is dict:
+ if type(values[0]) is dict: # noqa: E721
221
_attributes, *children_or_iterables = values
222
else:
223
_attributes = {}
0 commit comments