Skip to content

Commit 1fe9d01

Browse files
authored
Fix invalid string escape in doc string (#620)
1 parent 58c0e32 commit 1fe9d01

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

neo4j/time/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,8 @@ class Duration(tuple):
357357
`months * 2629746 + days * 86400 + d.seconds + d.nanoseconds // 1000000000`.
358358
(Like the integer division in Python, this one is to be understood as
359359
rounding down rather than towards 0.)
360-
This value must be between -(2\ :sup:`63`) and (2\ :sup:`63` - 1) inclusive.
360+
This value must be between -(2\\ :sup:`63`) and (2\\ :sup:`63` - 1)
361+
inclusive.
361362
362363
:param years: will be added times 12 to `months`
363364
:type years: float

0 commit comments

Comments
 (0)