Skip to content
Snippets Groups Projects
Forked from DM / dm-docs
261 commits behind, 810 commits ahead of the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
beamlineInfo.py 195 B
#!/usr/bin/env python

from dmObject import DmObject

class BeamlineInfo(DmObject):

    DEFAULT_KEY_LIST = [ 'id', 'name' ]

    def __init__(self, dict):
        DmObject.__init__(self, dict)