From cac6e06cc9ef2903a15e594186445f3baa989a1a Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Fri, 11 Jun 2010 16:58:44 +0200 Subject: test_task: fixed import error, made all modules from x import * safe --- lib/git/async/graph.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/git/async/graph.py') diff --git a/lib/git/async/graph.py b/lib/git/async/graph.py index 9ee0e891..4e14c81e 100644 --- a/lib/git/async/graph.py +++ b/lib/git/async/graph.py @@ -1,5 +1,7 @@ """Simplistic implementation of a graph""" +__all__ = ('Node', 'Graph') + class Node(object): """A Node in the graph. They know their neighbours, and have an id which should resolve into a string""" -- cgit v1.2.1