summaryrefslogtreecommitdiff
path: root/isort/wrap.py
diff options
context:
space:
mode:
authorTimothy Crosley <timothy.crosley@gmail.com>2020-04-18 15:41:18 -0700
committerTimothy Crosley <timothy.crosley@gmail.com>2020-04-18 15:41:18 -0700
commita9f91373e3877d0ad4827dc7e98863aeceda7e03 (patch)
tree5e96cac8139ee9ab16655d8039a1a9dc12a86176 /isort/wrap.py
parentbb31300342b0135099d75c30c9e1cf1554297433 (diff)
downloadisort-a9f91373e3877d0ad4827dc7e98863aeceda7e03.tar.gz
Achieve 100% test coverage for wrap.py
Diffstat (limited to 'isort/wrap.py')
-rw-r--r--isort/wrap.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/isort/wrap.py b/isort/wrap.py
index 37bf6ec2..a6dbeee1 100644
--- a/isort/wrap.py
+++ b/isort/wrap.py
@@ -10,8 +10,8 @@ from .wrap_modes import formatter_from_string
def import_statement(
import_start: str,
from_imports: List[str],
- comments: Sequence[str],
- line_separator: str,
+ comments: Sequence[str] = (),
+ line_separator: str = "\n",
config: Config = DEFAULT_CONFIG,
multi_line_output: Optional[Modes] = None,
) -> str: