We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Current issue template doesn't capture enough error details for debugging.
Add "Error Context" section to bug reports requesting:
The text was updated successfully, but these errors were encountered:
example implementation for context :
from typing import Dict, List from stimulus.exceptions import LoaderConfigError def validate_config_structure(config: Dict, required_sections: List[str]) -> None: """Validate top-level config structure""" missing_sections = [s for s in required_sections if s not in config] if missing_sections: raise LoaderConfigError("Missing config sections").add_context( missing_sections=missing_sections, existing_sections=list(config.keys()), required_sections=required_sections ) # Usage during pipeline setup def initialize_loader(config: dict): validate_config_structure(config, required_sections=["columns", "formats"]) # Proceed with initialization
Sorry, something went wrong.
No branches or pull requests
Is your change request related to a problem? Please describe.
Current issue template doesn't capture enough error details for debugging.
Describe the solution you'd like
Add "Error Context" section to bug reports requesting:
The text was updated successfully, but these errors were encountered: