Using walrus operator to reduce line count in code files I can't unit test, e.g.
a = b
b(a)
c(a)
becomes
b(a := b)
c(a)
#python
Post
October 7, 2020
October 7, 2020
Using walrus operator to reduce line count in code files I can't unit test, e.g.
a = b
b(a)
c(a)
becomes
b(a := b)
c(a)
#python