Skip to content

Instantly share code, notes, and snippets.

@cosmic-cortex
Last active May 6, 2020 06:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cosmic-cortex/e07de3bafb9689e9f33ed8e75c1ca935 to your computer and use it in GitHub Desktop.
Save cosmic-cortex/e07de3bafb9689e9f33ed8e75c1ca935 to your computer and use it in GitHub Desktop.
def make_client(id: int, name: str, contact_id: int):
return Record({"id": id, "name": name, "contact_id": contact_id})
clients = {make_client(0, "Dunmore High School", 3),
make_client(1, "Lackawanna County", 0),
make_client(2, "Mr. Deckert", 1),
make_client(3, "Phil Maguire", 3),
make_client(4, "Harper Collins", 1),
make_client(5, "Apex Technology", 1)}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment