Skip to content

Commit

Permalink
Upgrade lints
Browse files Browse the repository at this point in the history
  • Loading branch information
judtinzhang committed Oct 14, 2023
1 parent 786bcff commit 1c4d3e6
Show file tree
Hide file tree
Showing 6 changed files with 1 addition and 6 deletions.
2 changes: 1 addition & 1 deletion backend/accounts/backends.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def get_email(self, pennid):
return None

return response[0]["email"]
except (requests.exceptions.RequestException):
except requests.exceptions.RequestException:
return None

def authenticate(self, request, remote_user, shibboleth_attributes):
Expand Down
1 change: 0 additions & 1 deletion backend/accounts/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@


class Migration(migrations.Migration):

initial = True

dependencies = [("auth", "0011_update_proxy_permissions")]
Expand Down
1 change: 0 additions & 1 deletion backend/accounts/migrations/0002_auto_20200213_1711.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ def copy_permissions(apps, schema_editor):


class Migration(migrations.Migration):

dependencies = [("accounts", "0001_initial")]

operations = [
Expand Down
1 change: 0 additions & 1 deletion backend/accounts/migrations/0003_auto_20210918_2041.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ def create_email_objects(apps, schema_editor):


class Migration(migrations.Migration):

dependencies = [
("accounts", "0002_auto_20200213_1711"),
]
Expand Down
1 change: 0 additions & 1 deletion backend/accounts/migrations/0004_user_profile_pic.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@


class Migration(migrations.Migration):

dependencies = [
("accounts", "0003_auto_20210918_2041"),
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@


class Migration(migrations.Migration):

dependencies = [
("accounts", "0004_user_profile_pic"),
]
Expand Down

0 comments on commit 1c4d3e6

Please sign in to comment.