Skip to content

Commit c150941

Browse files
author
Vivian Ta
committed
Remove exception and place in conditional
1 parent 4f1f929 commit c150941

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

students/visokoo/lesson03/assignment/src/basic_operations.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,10 @@ def list_active_customers():
118118
active_customers = (
119119
Customer
120120
.select()
121-
.where(Customer.status == "active").count())
122-
except peewee.DoesNotExist:
121+
.where(
122+
(Customer.status == "active") |
123+
(Customer.status == "Active")).count())
124+
if active_customers == 0:
123125
LOGGER.info("No active customers found in DB")
124126
return active_customers
125127

0 commit comments

Comments
 (0)