Joao Coelho
Joao Coelho
FYI, running rfhub on Robot Framework 3.0 and works well.
If you don't plan on implementing this, could you point me to the code where I can do it? tx!
I'll take a look at it, but wouldn't it be a matter of string search and replace? Ex: replace `\t` with 4 spaces for indentation using regex `(?
Changed **doc_to_html** to this: ``` def doc_to_html(doc, doc_format="ROBOT"): """Convert documentation to HTML""" from robot.libdocpkg.htmlwriter import DocToHtml # Original code below # return DocToHtml(doc_format)(doc) # Modified code below import re html_robot...
Ok, spent a bit more time on this. Looks like it's robot's `DocToHtml` that removes the `\t` and there's no further processing after `doc_to_html`. I'll have to come up with...
Funny I just bumped into this today. Would love to see Typer fully handle Enums created with the Functional API, but I think this might be a Python limitation. Maybe...
Here's a good example that worked for me: having as an input parameter, the log level: ```python LogLevel = StrEnum('LogLevel', {k: k for k in logging._levelToName.values()}) # noqa @app.command() def...
IMO, the current interface is good. Adding the `required` parameter, would negate the first parameter (default value), which would be weird (the default value is ignored if `required=True`). If anything,...
Started working with `mashumaro` and congrats on a great package. IMO, the ability to serialize as array at top level is a killer feature as it's used in many scenarios....
Something similar is happening to me, but it's able to import some files and not others.. In my settings file: ``` *** Settings *** Library ../../qa-core-services/crqacore/common/SSHTunnel/SSHTunnel.py Library ../../qa-core-services/crqacore/common/SSHTunnel/SSHTunnelMode.py Library ../../qa-core-services/crqacore/common/SSHTunnel/SSHTunnelMonitorClient.py...