Skip to content

Commit

Permalink
#2723 Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
sambodeme committed Nov 3, 2023
1 parent 9027c63 commit ff60250
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion backend/census_historical_migration/admin.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from django.contrib import admin
from django.contrib import admin # noqa: F401

# Register your models here.
2 changes: 1 addition & 1 deletion backend/census_historical_migration/models.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from django.db import models
from django.db import models # noqa: F401

# Create your models here.
2 changes: 1 addition & 1 deletion backend/census_historical_migration/tests.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from django.test import TestCase
from django.test import TestCase # noqa: F401

# Create your tests here.
2 changes: 1 addition & 1 deletion backend/census_historical_migration/views.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from django.shortcuts import render
from django.shortcuts import render # noqa: F401

# Create your views here.

0 comments on commit ff60250

Please sign in to comment.