Skip to content

Instantly share code, notes, and snippets.

View smitchell's full-sized avatar

Steve Mitchell smitchell

View GitHub Profile
@smitchell
smitchell / main.py
Last active July 29, 2020 12:08
The trouble with tuples
#!/usr/bin/env python3
from pprint import pprint
from marshmallow import Schema
from marshmallow import fields
from marshmallow import post_load
class ModifyEntryRequest:
def __init__(self, dn, changes, controls=None):