core: bump black from 25.12.0 to 26.1.0 (#19567)

* core: bump black from 25.12.0 to 26.1.0

Bumps [black](https://github.com/psf/black) from 25.12.0 to 26.1.0.
- [Release notes](https://github.com/psf/black/releases)
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
- [Commits](https://github.com/psf/black/compare/25.12.0...26.1.0)

---
updated-dependencies:
- dependency-name: black
  dependency-version: 26.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* lint

Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
This commit is contained in:
dependabot[bot]
2026-01-20 01:12:31 +01:00
committed by GitHub
parent 0b5dde1225
commit a908efb792
32 changed files with 67 additions and 95 deletions

View File

@@ -59,8 +59,7 @@ if __name__ == "__main__":
config_file_name = "local.env.yml"
with open(config_file_name, "w", encoding="utf-8") as _config:
_config.write(
"""
_config.write("""
# Local authentik configuration overrides
#
# https://docs.goauthentik.io/docs/install-config/configuration/
@@ -71,8 +70,7 @@ if __name__ == "__main__":
# make gen-dev-config
# ```
"""
)
""")
safe_dump(
generate_local_config(),
@@ -80,8 +78,7 @@ if __name__ == "__main__":
default_flow_style=False,
)
print(
f"""
print(f"""
---
Generated configuration file: {config_file_name}
@@ -91,5 +88,4 @@ For more information on how to use this configuration, see:
https://docs.goauthentik.io/docs/install-config/configuration/
---
"""
)
""")