Skip to content

Commit 4b64811

Browse files
committed
adjust capitalization - Mapswipe to MapSwipe
1 parent cafe119 commit 4b64811

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

django/apps/existing_database/query.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ async def organization_type_stats(self) -> list[OrganizationSwipeStatsType]:
155155
)
156156
return [
157157
OrganizationSwipeStatsType(
158-
organization_name=organization or "Mapswipe",
158+
organization_name=organization or "MapSwipe",
159159
total_swipes=swipes_sum,
160160
)
161161
async for organization, swipes_sum in qs

django/apps/existing_database/types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ async def swipe_by_organization_name(self) -> list[OrganizationSwipeStatsType]:
225225
)
226226
return [
227227
OrganizationSwipeStatsType(
228-
organization_name=organization_name or "Mapswipe",
228+
organization_name=organization_name or "MapSwipe",
229229
total_swipes=total_swipes,
230230
)
231231
async for organization_name, total_swipes in qs

0 commit comments

Comments
 (0)