Skip to content

v1.0.35

Compare
Choose a tag to compare
@SnirShechter SnirShechter released this 24 Aug 17:16
· 20 commits to main since this release

Features

  • SDK: A reset mechanism is added to allow for subsequent invocations

    This will now work as expected (two different plugin invocations)

    import time
    from mlnotify import start, end
    
    start()
    time.sleep(15)
    end()
    
    start()
    time.sleep(15)
    end()