Gunung Pambudi W.
Gunung Pambudi W.
Happy to help but I'm new to programming and web development, and sorry for my English it's not my first language. Thank you
Thanks for fast response, i love your project. Best Regard, Gunung P.W.
Hello, I make a script that converts error documentation from `pylint-errors` to `bad.py`, `good.py`, `related.rst`, and `details.rst` in the appropriate folder, But it's very bad because I am a beginner,...
Hello, I have problems with `pre-commit` auto-fix formatting style example for `bad.py`. How to fix this problem? I have tried a few error messages that have similar problems with this...
Hello @creikey `pip` doesn't install by default in windows use `python -m ensurepip` to make sure pip installed i system. [Python ensurepip](https://docs.python.org/3/library/ensurepip.html) this the docs
There is ongoing PEP about this topic; [Python Discuss Forum](https://discuss.python.org/t/pep-735-dependency-groups-in-pyproject-toml/39233) [PEP 735 - Dependency Groups in pyproject.toml](https://peps.python.org/pep-0735/)
Is there anything I miss in pyproject.toml, but why the `rye build` and `rye build --wheel -c` give different output additional info: - windows 11 - uv is enable
for now, my solution is to use separately: - `rye build --wheel` - `rye build --sdist` So the wheel is not empty,
when i search `last_name` data/list/tuple/dict i just find `last_names` (with "s" plural), I cannot find `last_name` data
https://github.com/joke2k/faker/blob/faa419b7af433c75253374c3d319ba5ffc3139cd/faker/providers/company/id_ID/__init__.py#L3C1-L11 How to track down {{ last_name }}? And how to use last_name that uses id_ID locale data? ```python class Provider(CompanyProvider): formats = ( "{{company_prefix}} {{last_name}}", "{{company_prefix}} {{last_name}} {{last_name}}", "{{company_prefix}}...