From e0a35290fb33da41f8e5029b62ef62f08064ae51 Mon Sep 17 00:00:00 2001 From: Alex Itkes <38556752+alexitkes@users.noreply.github.com> Date: Sun, 28 Jul 2019 16:23:38 +0300 Subject: [PATCH] Update _decorators.py Fix whitespace --- pandas/util/_decorators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/util/_decorators.py b/pandas/util/_decorators.py index 8d86e389b4142..cfced3a907734 100644 --- a/pandas/util/_decorators.py +++ b/pandas/util/_decorators.py @@ -261,7 +261,7 @@ def wrapper(*args, **kwargs): if pos_args is None: msg = ( "%s will only accept %i positional arguments in version %s" - ) % (func.__name__, n_args,version) + ) % (func.__name__, n_args, version) else: msg = ( "%s will only accept positional arguments (%s) in version %s"