Closed nicozanf closed 3 months ago
Mainly typos. Also changes to using f-strings which is more user friendly than .format syntax
i.e. message = "Hello {first_name}".format(**user) --> message = f"Hello {user['first_name']}"
Mainly typos. Also changes to using f-strings which is more user friendly than .format syntax
i.e. message = "Hello {first_name}".format(**user) --> message = f"Hello {user['first_name']}"