Skip to content

Commit ff2a182

Browse files
committed
DR updates, first round
1 parent c5a2a65 commit ff2a182

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python-set/disjoint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
def verify_purchase(age, selection, restricted_products):
22
if age < 21 and not selection.isdisjoint(restricted_products):
3-
print("Purchase denied: products restricted to underage users")
3+
print("Purchase denied: selection includes age-restricted products")
44
else:
55
print("Purchase approved")
66

0 commit comments

Comments
 (0)