John Hendy

Results 98 comments of John Hendy

That's the same link I put above. I guess I was optimistically looking for more of a man page. Like what are `args`, what does this do, etc.? I find...

I'm back ~1yr later to confirm this still looks like a big problem. Granted, I'm still noob-ish, but it eats up a lot of my time to try and figure...

I've tried a bunch of entry ids (0 through 3) and the end always wants to go down, then bend right. Not sure. Forgive the formatting, but here's the extracted...

Thanks for taking a look @thomasp85 and @teunbrand . Understood, and honestly in re-looking at this... it took me a minute to parse what I thought the initial problem actually...

You're surpassing my knowledge @smouksassi . Seeing the `after_count()` reminds me of waiting for something like a dentist appt and skimming some of these newer features that were announced some...

For what it's worth as others stumble on this, I just `pip uninstall [name]` then `pip install [name]` and the errors went away. I did not have to `rm -rf`...

Fork -> revise `README.md` to your liking -> pull request?

Is it accurate to say that because a build bot fails, progress is roadblocked? This seems to be a case where humans are serving a tool vs. the other way...

Another thing to check is the presence of `argcomplete`. I had something funky going on from a failed brew install, leaving me without this package. Found via [this issue](https://github.com/ipython/traitlets/issues/872#issuecomment-1737216443).

Took a look and found what I think this issue is [here](https://github.com/WestHealth/pyvis/blob/master/pyvis/network.py#L291). ``` for node in nodes: # check if node is `number-like` try: node = int(node) self.add_node(node, **nd[node]) except:...