A dummy repository for debugging and testing GitHub repo filtering functionality.
poetry installfrom hello_flatten.hello.world import say_hello
# Generate a greeting
greeting = say_hello("Developer")
print(greeting) # Output: Hello, Developer!Or use the CLI:
poetry run hello-flatten- Install Poetry
- Clone the repository
- Install dependencies:
poetry install
- Install pre-commit hooks:
poetry run pre-commit install
poetry run pytest# Format code
poetry run black .
poetry run isort .
# Lint
poetry run ruff check .
# Type check
poetry run mypy .