Skip to content

Commit

Permalink
Fix aptId autocast
Browse files Browse the repository at this point in the history
  • Loading branch information
MinhPhan8803 committed Oct 28, 2022
1 parent 41d95b5 commit cbe27eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def mainpage_get(mainpage_obj: MainPage, args: MultiDict):
)
param = params(
args.get("numApts", type=int),
args.get("aptId", default=0, type=int),
args.get("aptId", type=int),
args.get("searchQuery", type=str),
args.get("priceSort", type=int),
args.get("ratingSort", type=int),
Expand Down

3 comments on commit cbe27eb

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage

Coverage Report
FileStmtsMissCoverMissing
app.py693648%44–49, 54–94, 99–108
TOTAL2173683% 

Tests Skipped Failures Errors Time
35 0 💤 0 ❌ 0 🔥 0.763s ⏱️

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage

Coverage Report
FileStmtsMissCoverMissing
app.py693648%44–49, 54–94, 99–108
TOTAL2173683% 

Tests Skipped Failures Errors Time
35 0 💤 0 ❌ 0 🔥 0.829s ⏱️

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage

Coverage Report
FileStmtsMissCoverMissing
app.py693648%44–49, 54–94, 99–108
TOTAL2173683% 

Tests Skipped Failures Errors Time
35 0 💤 0 ❌ 0 🔥 0.919s ⏱️

Please sign in to comment.