Skip to content

Commit

Permalink
chg: Bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafiot committed Jan 26, 2024
1 parent c27482f commit 2a695a7
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 53 deletions.
100 changes: 50 additions & 50 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ redis = {version = "^5.0.1", extras = ["hiredis"]}
flask-restx = "^1.3.0"
werkzeug = "^3.0.1"
gunicorn = "^21.2.0"
lacuscore = "^1.7.10"
lacuscore = "^1.7.11"
rich = "^13.7.0"
psutil = "^5.9.8"

Expand Down
4 changes: 2 additions & 2 deletions website/web/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from typing import Dict, Optional, Union, Any, List, Tuple

from flask import Flask, request
from flask_restx import Api, Resource, fields # type: ignore
from flask_restx import Api, Resource, fields # type: ignore[import-untyped]

from lacuscore import CaptureStatus, CaptureResponse

Expand All @@ -25,7 +25,7 @@

app: Flask = Flask(__name__)

app.wsgi_app = ReverseProxied(app.wsgi_app) # type: ignore
app.wsgi_app = ReverseProxied(app.wsgi_app) # type: ignore[method-assign]

app.config['SECRET_KEY'] = get_secret_key()

Expand Down

0 comments on commit 2a695a7

Please sign in to comment.