From: Brian Warner Date: Thu, 11 Oct 2007 08:55:29 +0000 (-0700) Subject: test_cli.py: hush pyflakes with a dummy usage, until we get some real CLI tests X-Git-Tag: allmydata-tahoe-0.6.1~47 X-Git-Url: https://git.rkrishnan.org/frontends/wapi.txt?a=commitdiff_plain;h=8ce93b5e275168b4548317c4d62ae08b329f975e;p=tahoe-lafs%2Ftahoe-lafs.git test_cli.py: hush pyflakes with a dummy usage, until we get some real CLI tests --- diff --git a/src/allmydata/test/test_cli.py b/src/allmydata/test/test_cli.py index e675d232..6922c040 100644 --- a/src/allmydata/test/test_cli.py +++ b/src/allmydata/test/test_cli.py @@ -8,6 +8,7 @@ from allmydata import uri # them yet. from allmydata.scripts import cli, tahoe_ls, tahoe_get, tahoe_put, tahoe_rm +_hush_pyflakes = [tahoe_ls, tahoe_get, tahoe_put, tahoe_rm] class CLI(unittest.TestCase):