Ron Serruya
Ron Serruya
There is a bug in the linkedin recruiter URL regex, it lacks the "profile" part This is how the link should be https://www.linkedin.com/recruiter/profile/476162262,HHNH,name Also, the URL regex for the "talent"...
**I don't really think this is a "bug", more like an extreme edge case.** While using the library I had to parse millions of name and encountered a user input:...
When signing a commit with a gpg key https://help.github.com/articles/signing-commits-using-gpg/ The "input your password" dialog appears, and lazygit gets stuck, CTRL + C/Z doesn't solve that. (and you cant input your...
Added support for pycountry to use its translations to lookup countries ```python import pycountry pycountry.install_translations_for_countries(['de', 'es', 'ar']) ``` After this line the user can search for countries using their german,...
Fix 753
**TESTS ARE NOT PASSING YET** Pr to fix #753 , (scripts are not the exact same, I only tweaked the timing of the bars) before the fix: https://asciinema.org/a/7BCaYxPnRn4D62nj1iHDivlED after the...
Originally reported in #3224 , split into a separate issue following the discussion in #3235 When the glue serde deserializes to json from avro, it includes the record namespaces and...
### What changes were proposed in this pull request? Added the option to provide a dict to `pyspark.sql.functions.lit` in order to create a map ### Why are the changes needed?...
Whenever the parameter `maxheadercolwidths` is not None, an IndexError is raised when trying to print an empty table The issue specifically is here: https://github.com/astanin/python-tabulate/blob/master/tabulate/__init__.py#L2253 ``` if maxheadercolwidths is not None:...