From 36da07c73b7ccb4f9cf655ba78bde34bedea5426 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 10 May 2016 07:56:54 +0200 Subject: [PATCH] Fix lint --- tests/unit/commands/test_cmdutils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/commands/test_cmdutils.py b/tests/unit/commands/test_cmdutils.py index 1adb8904b..f5e544fd8 100644 --- a/tests/unit/commands/test_cmdutils.py +++ b/tests/unit/commands/test_cmdutils.py @@ -181,7 +181,7 @@ class TestRegister: pass def test_star_args(self): - """Check handling of *args""" + """Check handling of *args.""" @cmdutils.register() def fun(*args): """Blah.""" @@ -190,7 +190,7 @@ class TestRegister: cmdutils.cmd_dict['fun'].parser.parse_args([]) def test_star_args_optional(self): - """Check handling of *args withstar_args_optional""" + """Check handling of *args withstar_args_optional.""" @cmdutils.register(star_args_optional=True) def fun(*args): """Blah."""