Brennen Raimer
Brennen Raimer
add pint
## What is this Python project? Pint allows you to manipulate physical quantities in a unit-aware manner. Is compatible with other libraries such as numpy ## What's the difference between...
## What is this Python project? Holoviews is a high-level plotting library that simplifies the process of plotting data, abstracting away the minutiae of drawing axes and glyphs allowing you...
## What is this Python project? Oracle's own database driver for working with Oracle SQL databases ## What's the difference between this Python project and similar ones? There are no...
## Current Behavior ### Steps to Reproduce ```powershell conda init xonsh ``` after running this, the following is inserted in `%USERPROFILE%\.xonshrc` ``` # >>> conda initialize >>> # !! Contents...
fixes #278 implements #89
```python from pyvis.network import Network from itertools import combinations nodes = [n for n in range(10)] edges = list(combinations(nodes, 2)) nt = Network() nt.add_nodes(nodes) nt.add_edges(edges) # correctly writes file, but...
```python from pyvis.network import Network from itertools import combinations nodes = [str(n) for n in range(10)] edges = list(combinations(nodes, 2)) nt = Network() # casts all node IDs from str...
* removes unnecessary and silent type conversion of numeric node IDs * add_edges using node IDs' original type no longer raises exception * refactored coincidental inappropriate usage of assert for...
I upgraded from the 2.6.12 image to the 2.6.13 today and immediately started getting `table not found: wallabag_internal_setting` error and wallabag fails to start. Reverting back to 2.6.12, all other...