132nd-etcher/EMFT

View on GitHub
emft/core/providers/github/gh_objects/gh_permissions.py

Summary

Maintainability
A
1 hr
Test Coverage
# coding=utf-8

from emft.core.providers.json_object import JSONObject, json_property


class GHPermissions(JSONObject):
    @json_property
    def admin(self):
        """"""

    @json_property
    def push(self):
        """"""

    @json_property
    def pull(self):
        """"""