Skip to content

Commit

Permalink
Merge pull request #178 from Haidra-Org/main
Browse files Browse the repository at this point in the history
fix: add missing controlnet "styles"
  • Loading branch information
tazlin authored Jan 4, 2025
2 parents d1a64a9 + 5ca1d99 commit ce73c96
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
rev: v5.0.0
hooks:
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/psf/black
rev: 24.8.0
rev: 24.10.0
hooks:
- id: black
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.6.8
rev: v0.8.0
hooks:
- id: ruff
- repo: https://github.com/pre-commit/mirrors-mypy
rev: 'v1.11.2'
rev: 'v1.13.0'
hooks:
- id: mypy
additional_dependencies: [pydantic, types-requests, types-pytz, types-setuptools, types-urllib3, StrEnum]
Expand Down
2 changes: 2 additions & 0 deletions horde_model_reference/meta_consts.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ class CONTROLNET_STYLE(StrEnum):
control_hed = auto()
control_canny = auto()
control_depth = auto()
control_qr = auto()
control_qr_xl = auto()


KNOWN_TAGS = [
Expand Down
10 changes: 5 additions & 5 deletions requirements.dev.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
pytest==8.3.3
mypy==1.11.2
black==24.8.0
ruff==0.6.8
tox~=4.20.0
pre-commit~=3.8.0
mypy==1.13.0
black==24.10.0
ruff==0.8.0
tox~=4.23.2
pre-commit~=4.0.1
build>=0.10.0
coverage>=7.2.7

Expand Down

0 comments on commit ce73c96

Please sign in to comment.