pycodestyle
pycodestyle copied to clipboard
🎛 A Svelte library for building dynamic, infinitely customizable node-based user interfaces and flowcharts
Hi (-: A-M-A-Z-I-N-G project. Can you zoom to a specific node via code? For example: zoomOnNode(nodeId).
Is it possible to create nodes interactively by right clicking in the canvas and choosing a node type? Some thing similar to what `rete.js` does... https://rete.js.org/ There were some attempts...
Hi everyone and thanks for quality software! I've notices that nodes comes w/ hardcoded classnames w/o ability to pass custom node classname via config: https://github.com/oslabs-beta/Svelvet/blob/1cd0841bf666691c83cb2f396043727ad4715848/src/lib/Nodes/index.svelte#L22-L36 So the question - is...
Is it possible to export to interactive file formats such as xmind and html
The following code does not result in any warnings: ``` if a()and b(): pass if b()in [1, 2, 3]: pass if c()or d(): pass ```
fixes #1061 Changed out the current implementation of lambda assignment detection for a regex based one. As stated in #1061, there are several lambda assignment cases that are being missed....
see #1084 and #1041 for more details resolves #1084 resolves #830
Quoth the specification, - Don't compare boolean values to True or False using ==. ``` Yes: if greeting: No: if greeting == True: Worse: if greeting is True: ``` pycodestyle...
so #1041 brought up a lot more instances of E721 and I don't feel confident adding this in a release since it's going to cause a bunch of (imo) unnecessary...