Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
324f09a
apply ruff format
paigewilliams Oct 22, 2025
acb8ba2
apply ruff check --fix
paigewilliams Oct 22, 2025
a8a894e
resolve E711 errors
paigewilliams Oct 22, 2025
e062b09
resolve F403 errors
paigewilliams Oct 22, 2025
e445f8c
resolve F841 errors
paigewilliams Oct 22, 2025
81ef1a3
another ruff format round
paigewilliams Oct 22, 2025
9a59082
add noqa: E722 for offenders
paigewilliams Oct 22, 2025
6861d65
resolve E402 errors
paigewilliams Oct 22, 2025
876f1bb
resolve or noqa F821 errors
paigewilliams Oct 22, 2025
9f78e82
resolve E712 errors
paigewilliams Oct 22, 2025
a14e4be
add noqa: F405
paigewilliams Oct 22, 2025
cf021dd
add noqa: F811 and comment
paigewilliams Oct 23, 2025
a8741eb
resolve E721 errors
paigewilliams Oct 23, 2025
7b06276
add noqa: F401
paigewilliams Oct 23, 2025
4ffb0d0
ruff format
paigewilliams Oct 23, 2025
f78e0d1
use relative import
paigewilliams Oct 23, 2025
3a32cf1
fix tests
paigewilliams Oct 23, 2025
598422f
add noqa: F841
paigewilliams Oct 23, 2025
5004b68
ruff format
paigewilliams Oct 31, 2025
c94e05c
revert formatting in migrations
paigewilliams Oct 31, 2025
827db58
exclude migration from ruff
paigewilliams Oct 31, 2025
750d333
run ruff check --fix
paigewilliams Oct 31, 2025
e224c76
fix linting errors in explore/views.py
paigewilliams Oct 31, 2025
1b23184
min_search_rank and min_search_similarity in vars to improve readability
paigewilliams Oct 31, 2025
5ba34f5
return unicode in __unicode__
paigewilliams Oct 31, 2025
513a8a3
include error msg in import_shp exception
paigewilliams Oct 31, 2025
b66d00a
resolve noqa: E722
paigewilliams Oct 31, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions TEKDB/Accounts/admin.py
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
from django.contrib import admin

# Register your models here.
2 changes: 1 addition & 1 deletion TEKDB/Accounts/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


class AccountsConfig(AppConfig):
name = 'Accounts'
name = "Accounts"
2 changes: 0 additions & 2 deletions TEKDB/Accounts/models.py
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
from django.db import models

# Create your models here.
2 changes: 0 additions & 2 deletions TEKDB/Accounts/views.py
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
from django.shortcuts import render

# Create your views here.
2 changes: 0 additions & 2 deletions TEKDB/Lookup/admin.py
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
from django.contrib import admin

# Register your models here.
4 changes: 2 additions & 2 deletions TEKDB/Lookup/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@


class LookupConfig(AppConfig):
name = 'Lookup'
verbose_name = 'Supplemental Lookups'
name = "Lookup"
verbose_name = "Supplemental Lookups"
2 changes: 0 additions & 2 deletions TEKDB/Lookup/models.py
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
from django.db import models

# Create your models here.
2 changes: 0 additions & 2 deletions TEKDB/Lookup/views.py
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
from django.shortcuts import render

# Create your views here.
2 changes: 0 additions & 2 deletions TEKDB/Relationships/admin.py
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
from django.contrib import admin

# Register your models here.
2 changes: 1 addition & 1 deletion TEKDB/Relationships/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


class RelationshipsConfig(AppConfig):
name = 'Relationships'
name = "Relationships"
2 changes: 0 additions & 2 deletions TEKDB/Relationships/models.py
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
from django.db import models

# Create your models here.
2 changes: 0 additions & 2 deletions TEKDB/Relationships/tests.py
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
from django.test import TestCase

# Create your tests here.
2 changes: 0 additions & 2 deletions TEKDB/Relationships/views.py
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
from django.shortcuts import render

# Create your views here.
Loading