Skip to content

Commit

Permalink
Add missing migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
christophehenry committed Feb 14, 2022
1 parent b60b711 commit 0d7b64c
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 20 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Generated by Django 3.2.11 on 2022-02-14 11:23

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('aidants_connect_web', '0081_auto_20220208_1730'),
]

operations = [
migrations.AlterModelOptions(
name='habilitationrequest',
options={'verbose_name': 'aidant à former', 'verbose_name_plural': 'aidants à former'},
),
]
38 changes: 18 additions & 20 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,24 +1,22 @@
[tool.black]
exclude = '''
(
/(
\.direnv
| \.eggs
| \.git
| \.hg
| \.mypy_cache
| \.nox
| \.tox
| \.venv
| venv
| \.svn
| _build
| buck-out
| build
| dist
| aidants_connect_web/migrations/*
)/
)
force-exclude = '''
/(
\.direnv
| \.eggs
| \.git
| \.hg
| \.mypy_cache
| \.nox
| \.tox
| \.venv
| venv
| \.svn
| _build
| buck-out
| build
| dist
| (.+/migrations)
)/
'''

[tool.isort]
Expand Down

0 comments on commit 0d7b64c

Please sign in to comment.