Skip to content

Commit

Permalink
black and pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
ElodieENSTA committed Jan 17, 2024
1 parent dd00cea commit c42fc83
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion backend/osmosewebsite/admin/team_member.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ class TeamMemberAdmin(ModelAdmin):
{
"fields": [
"mail_address",
"research_gate_url",
"personal_website_url",
"research_gate_url",
"github_url",
"linkedin_url",
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,15 @@
class Migration(migrations.Migration):

dependencies = [
('osmosewebsite', '0015_merge_20240108_1547'),
("osmosewebsite", "0015_merge_20240108_1547"),
]

operations = [
migrations.AlterField(
model_name='teammember',
name='mail_address',
field=models.EmailField(blank=True, max_length=254, null=True, verbose_name='Mail address'),
model_name="teammember",
name="mail_address",
field=models.EmailField(
blank=True, max_length=254, null=True, verbose_name="Mail address"
),
),
]

0 comments on commit c42fc83

Please sign in to comment.