Fix overindentation

Without this fix, "tox -epep8" fails.

Change-Id: I5c95add72735fd3c01b22a84b07ccf8d78e86aa2
This commit is contained in:
Cyril Roelandt 2019-03-12 20:41:43 +01:00
parent 3957f12aa2
commit 1b5ca365b4
1 changed files with 1 additions and 1 deletions

View File

@ -179,7 +179,7 @@ class signature(object):
fd.return_type = self.return_type
fd.set_options(**self.options)
if self.arg_types:
fd.set_arg_types(argspec, self.arg_types)
fd.set_arg_types(argspec, self.arg_types)
return func