Skip to content

Commit

Permalink
More
Browse files Browse the repository at this point in the history
  • Loading branch information
barseghyanartur committed Sep 26, 2024
1 parent 09b830f commit ec58d07
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions fake.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
from uuid import UUID

__title__ = "fake.py"
__version__ = "0.9.9"
__version__ = "0.10"
__author__ = "Artur Barseghyan <artur.barseghyan@gmail.com>"
__copyright__ = "2023-2024 Artur Barseghyan"
__license__ = "MIT"
Expand Down Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"},
Expand Down

0 comments on commit ec58d07

Please sign in to comment.