From ec58d0771f08a7adb8326acfd85f162bd2df479d Mon Sep 17 00:00:00 2001 From: Artur Barseghyan Date: Fri, 27 Sep 2024 01:27:24 +0200 Subject: [PATCH] More --- fake.py | 6 ++++-- pyproject.toml | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/fake.py b/fake.py index 363d4da..bdbdf80 100644 --- a/fake.py +++ b/fake.py @@ -65,7 +65,7 @@ from uuid import UUID __title__ = "fake.py" -__version__ = "0.9.9" +__version__ = "0.10" __author__ = "Artur Barseghyan " __copyright__ = "2023-2024 Artur Barseghyan" __license__ = "MIT" @@ -7830,7 +7830,9 @@ def test_multiple_placeholders(self): def test_wrapping_functionality(self): template = "This is a long sentence that needs to be wrapped." string_template = StringTemplate( - template, wrap_chars_after=10, faker=self.mock_faker, + template, + wrap_chars_after=10, + faker=self.mock_faker, ) expected = "This is a\nlong\nsentence\nthat needs\nto be\nwrapped." self.assertEqual(string_template, expected) diff --git a/pyproject.toml b/pyproject.toml index 83b6fe5..35181c9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "fake.py" description = "Minimalistic, standalone alternative fake data generator with no dependencies." readme = "README.rst" -version = "0.9.9" +version = "0.10" dependencies = [] authors = [ {name = "Artur Barseghyan", email = "artur.barseghyan@gmail.com"},