Mahi
Mahi
Having an abstract base class for models: ``` import {Column} from 'typeorm'; abstract class Model { @Column({primary: true, generated: 'uuid'}) id?: string; } ``` This code compiles (although it probably...
## I'm submitting a... [x] Bug report [x] Feature request ## Current behavior Attempting to change nodes' style by changing a state variable `color`: const [color, setColor] = useState('#ffffff'); return...
I personally dislike the current behavior of: from verbalexpressions import VerEx foo = VerEx().find(...).anything_but(...) As opposed to an arguably more Pythonic way: import verbalexpressions as verex foo = verex.find(...).anything_but(...) I...
Fixed indentation for code
With `pygame`, one can call the `set_mode()` with display flags: https://www.pygame.org/docs/ref/display.html#pygame.display.set_mode Currently the EzPyGame's `Application` class has no way to read and write these flags, so a property should be...
Happens upon :w ``` Error detected while processing function xolox#lua#autocheck[4]..xolox#lua#checksyntax[16]..xolox#misc#os#exec: line 123: E484: Can't open file C:\Users\PS_L~1\AppData\Local\Temp\VIoD15A.tmp Error detected while processing function xolox#lua#autocheck: line 4: E171: Missing :endif ```
### Prerequisites - [X] I have written a descriptive issue title - [X] I have searched existing issues to ensure the bug has not already been reported ### Fastify version...