mirror of
https://github.com/Crocmagnon/charasheet.git
synced 2024-11-22 22:48:03 +01:00
Compare commits
2 commits
5e741dd197
...
e4f68895b3
Author | SHA1 | Date | |
---|---|---|---|
e4f68895b3 | |||
|
3f5df89c85 |
2 changed files with 5 additions and 4 deletions
|
@ -31,7 +31,7 @@ repos:
|
|||
- id: django-upgrade
|
||||
args: [--target-version, "4.1"]
|
||||
- repo: https://github.com/psf/black
|
||||
rev: 24.4.0
|
||||
rev: 24.4.2
|
||||
hooks:
|
||||
- id: black
|
||||
args: [--target-version, py311]
|
||||
|
@ -40,7 +40,7 @@ repos:
|
|||
hooks:
|
||||
- id: djhtml
|
||||
- repo: https://github.com/astral-sh/ruff-pre-commit
|
||||
rev: v0.4.1
|
||||
rev: v0.4.2
|
||||
hooks:
|
||||
- id: ruff
|
||||
args: [--fix]
|
||||
|
@ -50,7 +50,7 @@ repos:
|
|||
- id: prettier
|
||||
types_or: [javascript, css]
|
||||
- repo: https://github.com/pre-commit/mirrors-eslint
|
||||
rev: v9.1.0
|
||||
rev: v9.1.1
|
||||
hooks:
|
||||
- id: eslint
|
||||
args: [--fix]
|
||||
|
|
|
@ -164,7 +164,8 @@ class CharacterCapability:
|
|||
def validate_image(fieldfile_obj, megabytes_limit: float):
|
||||
filesize = fieldfile_obj.file.size
|
||||
if filesize > megabytes_limit * 1024 * 1024:
|
||||
raise ValidationError("La taille maximale est de %sMo" % str(megabytes_limit))
|
||||
msg = f"La taille maximale est de {megabytes_limit}Mo"
|
||||
raise ValidationError(msg)
|
||||
|
||||
|
||||
class Character(models.Model):
|
||||
|
|
Loading…
Reference in a new issue