Skip to content

Commit e44d4df

Browse files
committed
Remove unicode spaces
Remove "EN SPACE" (U+2002) characters and replace with regular space (U+0020) characters
1 parent f6d097c commit e44d4df

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

β€ŽREADME.rstβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ domdf_python_tools
44

55
.. start short_desc
66
7-
**Helpful functions for Pythonβ€‚πŸβ€‚πŸ› οΈ**
7+
**Helpful functions for Python 🐍 πŸ› οΈ**
88

99
.. end short_desc
1010

β€Ždoc-source/latex_unicode.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def replace_emoji(app: Sphinx, exception: Optional[Exception] = None):
7070
output_content = output_file.read_text()
7171

7272
# Documentation summary emoji
73-
output_content = output_content.replace("β€‚πŸβ€‚πŸ› οΈ", '')
73+
output_content = output_content.replace(" 🐍 πŸ› οΈ", '')
7474
output_content = output_content.replace('🐍', '')
7575
output_content = output_content.replace('πŸ› ', '')
7676
output_content = output_content.replace('️', '') # Variation Selector-16

β€Ždomdf_python_tools/__init__.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# __init__.py
44
"""
5-
Helpful functions for Pythonβ€‚πŸβ€‚πŸ› οΈ .
5+
Helpful functions for Python 🐍 πŸ› οΈ .
66
"""
77
#
88
# Copyright Β© 2018-2020 by Dominic Davis-Foster <dominic@davis-foster.co.uk>

β€Žpyproject.tomlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "hatchling.build"
55
[project]
66
name = "domdf-python-tools"
77
version = "3.10.0"
8-
description = "Helpful functions for Pythonβ€‚πŸβ€‚πŸ› οΈ"
8+
description = "Helpful functions for Python 🐍 πŸ› οΈ"
99
readme = "README.rst"
1010
requires-python = ">=3.7"
1111
keywords = [ "utilities",]

β€Žrepo_helper.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ email: "dominic@davis-foster.co.uk"
66
version: "3.10.0"
77
username: "domdfcoding"
88
license: 'MIT'
9-
short_desc: 'Helpful functions for Pythonβ€‚πŸβ€‚πŸ› οΈ'
9+
short_desc: 'Helpful functions for Python 🐍 πŸ› οΈ'
1010

1111
min_coverage: 95
1212
tox_testenv_extras: all

0 commit comments

Comments
Β (0)