Skip to content

Instantly share code, notes, and snippets.

@NicholasBallard
Created August 11, 2020 03:36
Show Gist options
  • Select an option

  • Save NicholasBallard/f4103dd47c5f2ea1e6507fa35a214258 to your computer and use it in GitHub Desktop.

Select an option

Save NicholasBallard/f4103dd47c5f2ea1e6507fa35a214258 to your computer and use it in GitHub Desktop.
from dataclasses import dataclass
@dataclass
class Pixel:
red: int
green: int
blue: int
# alpha: float = 1
pixel = Pixel(255,0,0)
pixel
# returns:
# Pixel(red=255, green=0, blue=0, alpha=1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment