From 1980f2af3b0f7723e4e557c5a22574f01e420ab1 Mon Sep 17 00:00:00 2001 From: Sebastien Rousseau Date: Sat, 20 May 2023 23:57:51 +0100 Subject: [PATCH] fix(pain001): E501 line too long (80 > 79 characters) --- setup.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index cfff4e9..afb1af1 100644 --- a/setup.py +++ b/setup.py @@ -25,12 +25,14 @@ It offers a streamlined solution for reducing complexity and costs associated with payment processing. By providing a simple and efficient method to create ISO 20022-compliant payment files, it eliminates the -manual effort of file creation and validation. This not only saves valuable time -and resources but also minimizes the risk of errors, ensuring accurate and +manual effort of file creation and validation. This not only saves valuable +time and resources but also minimizes the risk of errors, ensuring accurate and seamless payment processing. """.strip() -SHORT_DESCRIPTION = """Pain001 is a Python Library for Automating ISO 20022-Compliant Payment Files Using CSV Data.""".strip() +SHORT_DESCRIPTION = """ +Pain001 is a Python Library for Automating ISO 20022-Compliant Payment Files +Using CSV Data.""".strip() DEPENDENCIES = ["xmlschema>=2.3.0"]