bastisawesome / guessinggame_ttv

A Twitch bot to play a word guessing game
BSD 3-Clause "New" or "Revised" License
0 stars 1 forks source link

Create Database Data Classes #18

Open bastisawesome opened 1 year ago

bastisawesome commented 1 year ago

The Database Manager class uses a large count of tuples inside of tuples to organise data, and while the data itself is simple and small, it would be more efficient to be able to refer to the data by name. Utilising a dataclass would essentially wrap this functionality behind named variables instead of unnamed tuples. Alternatively, could use namedtuples instead.