Skip to content
This repository was archived by the owner on May 5, 2023. It is now read-only.

Commit ae6d248

Browse files
committed
Merge branch 'hotfix-v0.1'
2 parents 4c820a0 + d935f23 commit ae6d248

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ncovapi/filters.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ class Meta:
2222
class ProvinceFilter(django_filters.rest_framework.FilterSet):
2323

2424
provinceShortNames = CharInFilter(
25-
field_name='provinceyName', lookup_expr='in')
25+
field_name='provinceShortName', lookup_expr='in')
2626
provinceNames = CharInFilter(
27-
field_name='provinceyName', lookup_expr='in')
27+
field_name='provinceName', lookup_expr='in')
2828

2929
class Meta:
3030
model = Province
@@ -44,4 +44,4 @@ class Meta:
4444
model = Country
4545
fields = [
4646
'continents', 'countryShortCode', 'countryName'
47-
]
47+
]

0 commit comments

Comments
 (0)