Jeremy Schulman
Jeremy Schulman
I am having a similar issue. When I am using the Click package for CLI, and employ the use of "\b" and "\f" for controlled formatting per https://click.palletsprojects.com/en/8.0.x/documentation/#preventing-rewrapping, then black...
@JelleZijlstra - I have created issue #2565 per your request. Thank you for supporting black. I love it!
@jslvtr - thank you for looking at this request. I have a few ideas. The first would be to enhance Console.measure() to accept and process the SVG content: https://rich.readthedocs.io/en/stable/reference/console.html#rich.console.Console.measure Indicates...
I've also found that this extraction is more accurate: ```python svg_xml = ETree.fromstring(svg_content) _, _, width, height = svg_xml.attrib['viewBox'].split() width, height = int(float(width)), int(float(height)) ```
I am also having the same issue on a "related" use-case, not exactly the same as above. In my case I am using metaclass to dynamically change the fields to...
@saparikh - if you'd like to make a PR I'll bring it into the next build. Thank you!
Adding `deferred` since I do not really need this at this time; but if there is enough interest I should be able to do this fairly quickly.
Hi @antonalekseev - My apologies for being MIA for a while. I am curious if you have found a "more elegant way". I've also been tracking news of netmiko of...
Presently you can use the `username` and `token` values to achieve this use-case. That said, most github authentication requires two-factor, which would prevent username/password.
@vnamb - just checking in with you; did you find a solution to this issue?