Skip to content

Commit 6e7be62

Browse files
committed
fix(cicd): pyhthon 3.11 syntax compatibility
1 parent c667110 commit 6e7be62

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/viur/shop/skeletons/cart.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,8 +196,8 @@ class CartNodeSkel(TreeSkel): # STATE: Complete (as in model)
196196

197197
name = StringBone(
198198
defaultValue=lambda skel, bone: (
199-
f"Session Cart of {current.user.get() and current.user.get()["name"] or "__guest__"}"
200-
f" created at {utils.utcNow()}"
199+
f'Session Cart of {current.user.get() and current.user.get()["name"] or "__guest__"}'
200+
f' created at {utils.utcNow()}'
201201
)
202202
)
203203

0 commit comments

Comments
 (0)