fix typo and add gitignore entries (#2959)

Split unrelated changes from #2940

Signed-off-by: Zhao Junwang <[email protected]>
This commit is contained in:
zhjwpku
2023-11-24 15:17:20 +01:00
committed by GitHub
parent 193c73f6b8
commit ed9d4750f9
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -27,7 +27,7 @@ lib64
pip-log.txt pip-log.txt
# Unit test / coverage reports # Unit test / coverage reports
.coverage .coverage*
.tox .tox
nosetests.xml nosetests.xml
coverage.xml coverage.xml
@@ -35,6 +35,7 @@ htmlcov
junit.xml junit.xml
features/output* features/output*
dummy dummy
result.json
# Translations # Translations
*.mo *.mo
+1 -1
View File
@@ -557,7 +557,7 @@ class SyncState(NamedTuple):
"""Factory method to parse *value* as synchronisation state information. """Factory method to parse *value* as synchronisation state information.
:param version: optional *version* number for the object. :param version: optional *version* number for the object.
:param value: (optionally JSON serialised) sychronisation state information :param value: (optionally JSON serialised) synchronisation state information
:returns: constructed :class:`SyncState` object. :returns: constructed :class:`SyncState` object.