Jan Stürtz

Results 13 comments of Jan Stürtz

As a workaoround I call `bandit -x ""` So that `_log_option_source` doesn't get the defaults. Or for `.pre-commit-config.yaml`: ``` - repo: https://github.com/PyCQA/bandit rev: 1.7.0 hooks: - id: bandit args: ['--ini',...

You are trying to open a directory as a file. Remove trailing `\` from path to name the File. Also Backslahes needed to be escaped, or the string must be...

On e.g. Windows `:` is not a valid char for a filename. Compare with e.g. `c:\` where it has a special meaning

I think the issue is about html tables in html tables and not about plain text in html tables, like this code - please correct me if I'm wrong. ```python...

@hchiper can you please explain the requirements from your report in #386 and check if this discussion here is about your needs. Thx.

I have been thinking about pretty printing vs. condensed html over the last few days. IMHO, pretty printing of html code is not a feature of prettytable. If you want...

Hi, If i understood you correctly you want embed html tables in html tables. Pretty Tables does not know about the content of the cells, so you have to add...

You can achieve that with custom_format: ```python import prettytable import colorama def _colored_column(col, val) -> str: # Red for negative, green for zero or positive overtime. if val >= 0:...

Hi @pannet1 , can the issue be closed?

With the custom_value_format (#397) function you could do something like this. Example code: ```python import prettytable import git import textwrap def myformatter(field, val, rep): if field == "message": return textwrap.shorten(rep,...