danields761
Results
2
comments of
danields761
@chrahunt, it's good to note, that `pyproject.toml` defines version(s), but actually `poetry` creates it's own virtualenv on first invocation of such commands as `poetry add`, `poetry install` etc. In result...
Few examples with dash symbol as well: ``` In [1]: import stringcase In [2]: stringcase.camelcase('foo-bar') Out[2]: 'foar' In [3]: stringcase.camelcase('foo-bar-baz') Out[3]: 'foaaz' ```