removed random "info" and updated pre-commit config

This commit is contained in:
2023-10-18 10:20:10 -04:00
parent 3b32187ba9
commit 9654a42ab5
2 changed files with 15 additions and 2 deletions

View File

@@ -2,8 +2,21 @@
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.2.0
rev: v4.5.0
hooks:
- id: check-ast
- id: check-case-conflict
- id: check-json
- id: check-merge-conflict
- id: check-shebang-scripts-are-executable
- id: check-symlinks
- id: check-toml
- id: check-vcs-permalinks
- id: check-xml
- id: debug-statements
- id: destroyed-symlinks
- id: detect-aws-credentials
- id: detect-private-key
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml

View File

@@ -68,7 +68,7 @@ def update_instance_table(
if tag["Key"] == "Name":
name = tag["Value"]
table.add_rows({"name": name, "status": instance.state["Name"]})
log.debug("Table updated")info
log.debug("Table updated")
def nicegui_ui() -> None: