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

Move BootLoaderConfig to context manager #2438

Merged
merged 2 commits into from
Jan 26, 2024

Commits on Jan 23, 2024

  1. Move BootLoaderConfig to context manager

    Change the BootLoaderConfig class to be a context manager.
    All code using BootLoaderConfig was updated to the following
    with statement:
    
        with BootLoaderConfig.new(...) as bootloader_config:
            bootloader_config.some_member()
    
    This is related to Issue #2412
    schaefi committed Jan 23, 2024
    Configuration menu
    Copy the full SHA
    d209a57 View commit details
    Browse the repository at this point in the history

Commits on Jan 26, 2024

  1. better function name

    schaefi committed Jan 26, 2024
    Configuration menu
    Copy the full SHA
    14e8482 View commit details
    Browse the repository at this point in the history