magmax / python-inquirer

A collection of common interactive command line user interfaces, based on Inquirer.js (https://github.com/SBoudrias/Inquirer.js/)
MIT License
981 stars 98 forks source link

path: remove `normalize_to_absolute_path` #593

Closed Cube707 closed 3 weeks ago

Cube707 commented 3 weeks ago

This removes the already non-working option normalize_to_absolute_path from the Path question type.

It was decided that inquirer will always return the exact user input and responsibilities like normalizing path's are up to the caller depending on his requirements

This should not affect anybody as the constructor still accepts all unknown keywords via **kwargs, meaning it gobble normalize_to_absolute_path if still present in existing code.