Skip to content

Commit

Permalink
[pre-commit.ci] pre-commit autoupdate (#2047)
Browse files Browse the repository at this point in the history
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: iameskild <eskild.eriksen122@gmail.com>
  • Loading branch information
pre-commit-ci[bot] and iameskild authored Oct 10, 2023
1 parent 8e181bd commit da396c2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ repos:
exclude: "^src/_nebari/template/"

- repo: https://github.com/codespell-project/codespell
rev: v2.2.5
rev: v2.2.6
hooks:
- id: codespell
args:
Expand All @@ -53,13 +53,13 @@ repos:

# python
- repo: https://github.com/psf/black
rev: 23.7.0
rev: 23.9.1
hooks:
- id: black
args: ["--line-length=88", "--exclude=/src/_nebari/template/"]

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.0.287
rev: v0.0.292
hooks:
- id: ruff
args: ["--fix"]
Expand All @@ -75,7 +75,7 @@ repos:

# terraform
- repo: https://github.com/antonbabenko/pre-commit-terraform
rev: v1.83.2
rev: v1.83.4
hooks:
- id: terraform_fmt
args:
Expand Down
2 changes: 1 addition & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ Enhancements for this release include:

### Bug fixes

This release addresses several bugs with a slight emphasis on stablizing the core services while also improving the end user experience.
This release addresses several bugs with a slight emphasis on stabilizing the core services while also improving the end user experience.

### What's Changed
* [BUG] Adding back feature of limiting profiles for users and groups by @costrouc in [PR 1169](https://github.com/Quansight/qhub/pull/1169)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ resource "kubernetes_deployment" "worker" {
}

annotations = {
# This lets us autorestart when the conifg changes!
# This lets us autorestart when the config changes!
"checksum/config-map" = sha256(jsonencode(kubernetes_config_map.conda-store-config.data))
"checksum/secret" = sha256(jsonencode(kubernetes_secret.conda-store-secret.data))
"checksum/conda-environments" = sha256(jsonencode(kubernetes_config_map.conda-store-environments.data))
Expand Down
2 changes: 1 addition & 1 deletion src/nebari/plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def _import_module_from_filename(plugin: str):
try:
self.plugin_manager.register(mod, plugin)
except ValueError:
# Pluin already registered
# Plugin already registered
pass

def get_available_stages(self):
Expand Down

0 comments on commit da396c2

Please sign in to comment.