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

Quick-sort Test Fail #1

Open
Lemniscate-world opened this issue Feb 1, 2025 · 1 comment
Open

Quick-sort Test Fail #1

Lemniscate-world opened this issue Feb 1, 2025 · 1 comment
Assignees
Labels
bug Something isn't working

Comments

@Lemniscate-world
Copy link
Owner

dissect analyze --file ./tests/test_quicksort.py

...

ModuleNotFoundError: No module named 'ast_normalizer'

@Lemniscate-world Lemniscate-world added the bug Something isn't working label Feb 1, 2025
@Lemniscate-world Lemniscate-world self-assigned this Feb 1, 2025
@Lemniscate-world
Copy link
Owner Author

The ast_normalizer module is not found in the current Python environment.
This error occurs because the ast_normalizer module is not in the Python path or hasn't been installed.

To resolve this issue, we need to ensure that the ast_normalizer module is available.

  1. Let's check if there's an ast_normalizer.py file in the same directory or the parent directory of the current file.
    2 . If it exists, we need to adjust the import statement to use a relative import.
  2. If it doesn't exist, we might need to create this file or install it if it's a third-party package.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant