Peter Stein
Peter Stein
Currently, this package simply passes the text as is to the deepl API. It is the deepl API itself that ignores any new line character from the input: ```python from...
Unfortunately, the GitHub Pages link https://uber.github.io/manifold/ also redirects to http://manifold.mlvis.io/, which currently results in an ```ERR_NAME_NOT_RESOLVED``` error page. I guess the only solution right now is to [run the website...
I can confirm this issue
Possible workaround inspired by: - https://github.com/Shuttl-Tech/simple-state-machine#what-if-my-function-has-2or-more-possible-transitions - https://stackoverflow.com/a/35448590/9907540 ```python from finite_state_machine import StateMachine, transition class ExampleStateMachine(StateMachine): initial_state = "A" def __init__(self): self.state = self.initial_state super().__init__() @transition(source=["B", "D"], target="A") def event_1(self):...
For reference, the desired finite state machine implemented with [transitions](https://github.com/pytransitions/transitions) which you also talked about in your [talk](https://youtu.be/OBGUlbcHi2k?t=4489): ```python from transitions import Machine, State class SomeClass: pass class StateA(State): def...
> * does it make sense to have more than 1 decorator per transition function? I was thinking the same first, but I am not sure how else you would...
I just checked what the [transitions](https://github.com/pytransitions/transitions) package does when two transitions have the same source state. It seems like it just does whatever was set first. ```mermaid stateDiagram-v2 [*] -->...
For this issue in [django-fsm](https://github.com/viewflow/django-fsm), see: - https://github.com/viewflow/django-fsm/issues/122
> Hi Peter @ptrstn , do you have some updates on this? I'll be able to work on it starting beginning of October, since I'm still busy with private issues
Hello, Unfortunately I am very busy at the moment, so I can't promise when I can investigate this problem. Ill get back to you when I am able to figure...