# HG changeset patch # User Nsukami Patrick <ndkpatt at gmail dot com> # Date 1549363332 0 # Tue Feb 05 10:42:12 2019 +0000 # Node ID 3a4dfad8431a5d6c188e5f6c66dc30f0d25659b2 # Parent 273ec52ea9891db33869e39f9a5cda4e796bc485 Flake8: fix F401, E222 diff --git a/cubicweb_squareui/__pkginfo__.py b/cubicweb_squareui/__pkginfo__.py --- a/cubicweb_squareui/__pkginfo__.py +++ b/cubicweb_squareui/__pkginfo__.py @@ -1,11 +1,6 @@ # pylint: disable=W0622 """cubicweb-squareui application packaging information""" -from os import listdir as _listdir -from os.path import join, isdir -from glob import glob - - modname = 'squareui' distname = 'cubicweb-squareui' @@ -18,7 +13,7 @@ description = 'data-centric user interface for cubicweb based on bootstrap' web = 'http://www.cubicweb.org/project/%s' % distname -__depends__ = { +__depends__ = { 'cubicweb': '>= 3.26.0', 'cubicweb-bootstrap': '>= 1.3.1', }