From 72751592a3a0c12d445ebece11f1681d92146bd1 Mon Sep 17 00:00:00 2001 From: Jimmy Zelinskie Date: Wed, 22 Mar 2017 15:44:12 -0400 Subject: [PATCH] data.interfaces.v1: document types --- data/interfaces/v1.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/data/interfaces/v1.py b/data/interfaces/v1.py index c6ba7502e..abc3fb858 100644 --- a/data/interfaces/v1.py +++ b/data/interfaces/v1.py @@ -13,6 +13,12 @@ class Repository(namedtuple('Repository', ['id', 'name', 'namespace_name', 'desc 'is_public', 'kind'])): """ Repository represents a namespaced collection of tags. + :type id: int + :type name: string + :type namespace_name: string + :type description: string + :type is_public: bool + :type kind: string """