Skip to content
This repository was archived by the owner on Oct 17, 2022. It is now read-only.

Commit 95da686

Browse files
committed
Reformat src/conf.py to conform to latest python black rules
Python black removed Python 2 support so it now flags the `u` prefixed strings. We picked up python black 22.1: ``` Collecting black Downloading black-22.1.0-py3-none-any.whl (160 kB) ``` It removed python 2 support: * https://pypi.org/project/black/22.1.0/ * psf/black#2740
1 parent 4531443 commit 95da686

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/conf.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@
3636
version = "3.2"
3737
release = "3.2.0"
3838

39-
project = u"Apache CouchDB\u00ae"
39+
project = "Apache CouchDB\u00ae"
4040

41-
copyright = u"%d, %s" % (
41+
copyright = "%d, %s" % (
4242
datetime.datetime.now().year,
43-
u"Apache Software Foundation. CouchDB\u00ae is a registered trademark of the "
44-
+ u"Apache Software Foundation",
43+
"Apache Software Foundation. CouchDB\u00ae is a registered trademark of the "
44+
+ "Apache Software Foundation",
4545
)
4646

4747
primary_domain = "http"

0 commit comments

Comments
 (0)