shizmob / pydle

An IRCv3-compliant Python 3 IRC library.
BSD 3-Clause "New" or "Revised" License
154 stars 47 forks source link

Fix use of mutable default arguments #141

Closed ZeroKnight closed 4 years ago

ZeroKnight commented 4 years ago

Mutable default arguments were used in a few places, which is a common Python pitfall. I've replaced them with the correct idiom of defaulting to None and assigning an empty list in the body.