From 579dbf0cc0686d568cb1386ccbbd81837c90e49b Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sat, 25 Sep 2010 04:43:39 -0400 Subject: [PATCH] Added docstring. Removed unneeded import. --- tablib/core.py | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/tablib/core.py b/tablib/core.py index 0167c34..fae4547 100644 --- a/tablib/core.py +++ b/tablib/core.py @@ -1,21 +1,17 @@ # -*- coding: utf-8 -*- -# _____ ______ ______ _________ -# __ /_______ ____ /_ ___ /_ _____ ______ / -# _ __/_ __ `/__ __ \__ __ \_ _ \_ __ / -# / /_ / /_/ / _ /_/ /_ /_/ // __// /_/ / -# \__/ \__,_/ /_.___/ /_.___/ \___/ \__,_/ +""" Tablib - Core Library +""" import csv import cStringIO -import random import simplejson as json import xlwt import yaml -from helpers import * +from helpers import Struct # __all__ = ['Dataset', 'DataBook']