Skip to content

Commit

Permalink
Merge branch 'main' into pixi
Browse files Browse the repository at this point in the history
  • Loading branch information
hoxbro committed Oct 14, 2024
2 parents 59ef7f4 + 0d191dc commit c4142f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions param/parameterized.py
Original file line number Diff line number Diff line change
Expand Up @@ -971,6 +971,7 @@ def _modified_slots_defaults(cls):

@classmethod
def __init_subclass__(cls):
super().__init_subclass__()
# _update_signature has been tested against the Parameters available
# in Param, we don't want to break the Parameters created elsewhere
# so wrapping this in a loose try/except.
Expand Down
2 changes: 1 addition & 1 deletion tests/testreactive.py
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ def gen(val):
async def test_reactive_gen_with_dep():
def gen(i):
yield i+1
time.sleep(0.05)
time.sleep(0.1)
yield i+2

irx = rx(0)
Expand Down

0 comments on commit c4142f6

Please sign in to comment.