From 20167b4c6accce3fff84f8d242ec6d163405add5 Mon Sep 17 00:00:00 2001 From: Gijs de Heij Date: Mon, 23 Dec 2019 16:53:27 +0100 Subject: [PATCH] Attribution for the modified textwrap --- asciiWriter/wrap_single_line.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/asciiWriter/wrap_single_line.py b/asciiWriter/wrap_single_line.py index 8b69e42..ca947d1 100644 --- a/asciiWriter/wrap_single_line.py +++ b/asciiWriter/wrap_single_line.py @@ -1,3 +1,8 @@ +""" + Based on the textwrap2 module included in the PyHyphen library: + https://pypi.org/project/PyHyphen +""" + import textwrap class TextWrapper(textwrap.TextWrapper):