Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add --list-profiles command line argument #2319

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

CasP0
Copy link

@CasP0 CasP0 commented Jan 6, 2025

Add a new command line argument --list-profiles to the argument parser in isort/main.py.

  • Argument Parser Changes

    • Add --list-profiles argument to the general group.
    • Implement logic to print the available profiles and exit if --list-profiles is provided.
  • Test Case Addition

    • Add a new test case in tests/unit/test_main.py to verify that --list-profiles prints the available profiles.

Add a new command line argument `--list-profiles` to the argument parser in `isort/main.py`.

* **Argument Parser Changes**
  - Add `--list-profiles` argument to the general group.
  - Implement logic to print the available profiles and exit if `--list-profiles` is provided.

* **Test Case Addition**
  - Add a new test case in `tests/unit/test_main.py` to verify that `--list-profiles` prints the available profiles.
Copy link
Contributor

@kurtmckee kurtmckee left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@CasP0 This PR contains far more changes than are necessary for implementation. It also appears to introduce errors.

I recommend eliminating all of the unrelated changes to make it easier for maintainers to review.

@@ -470,7 +476,6 @@ def _build_arg_parser() -> argparse.ArgumentParser:
output_group.add_argument(
"--cs",
"--combine-star",
dest="combine_star",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was removed but not added back in as other arguments were.

Comment on lines -1013 to +1018
uniqueness.add_argument(
uniqueness.add.argument(
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It looks like this changed from an underscore to a period. Was this intended?

@@ -1062,6 +1067,12 @@ def main(argv: Optional[Sequence[str]] = None, stdin: Optional[TextIOWrapper] =
print(ASCII_ART)
return

if arguments.get("list_profiles"):
print("Available profiles:")
for profile in profiles.keys():
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit -- no need to call .keys() as dictionary iterate over their keys by default. 👍

for profile in profiles:
    print(f"- {profile}")

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants