Skip to content

Commit 2ec4115

Browse files
committed
Minor tweaks
1 parent 79b42a4 commit 2ec4115

File tree

5 files changed

+3
-6
lines changed

5 files changed

+3
-6
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ venv
117117
ENV/
118118
env.bak/
119119
venv.bak/
120+
p312
120121

121122
# mypy
122123
.mypy_cache/

LICENSE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (C) 2019-2024 Miðeind ehf.
3+
Copyright (C) 2018-2024 Miðeind ehf.
44
Original author: Vilhjálmur Þorsteinsson
55

66
Permission is hereby granted, free of charge, to any person obtaining a copy

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ Copyright and License
397397
:align: right
398398
:alt: Miðeind ehf.
399399

400-
**Copyright © 2019-2023 Miðeind ehf.**
400+
**Copyright © 2018-2024 Miðeind ehf.**
401401

402402
GreynirCorrect's original author is *Vilhjálmur Þorsteinsson*.
403403

pyproject.toml

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ description = "Spelling and grammar correction for Icelandic"
55
authors = [{ name = "Miðeind ehf.", email = "[email protected]" }]
66
readme = { file = "README.rst", content-type = "text/x-rst" }
77
license = { file = "LICENSE.txt" }
8-
# For classifier list see: https://pypi.org/pypi?%3Aaction=list_classifiers
98
classifiers = [
109
"Development Status :: 5 - Production/Stable",
1110
"Intended Audience :: Developers",

src/reynir_correct/wrappers.py

-3
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@
7676

7777

7878
class AnnTokenDict(TypedDict, total=False):
79-
8079
"""Type of the token dictionaries returned from check_errors()"""
8180

8281
# Token kind
@@ -90,7 +89,6 @@ class AnnTokenDict(TypedDict, total=False):
9089

9190

9291
class AnnDict(TypedDict):
93-
9492
"""A single annotation, as returned by the Yfirlestur.is API"""
9593

9694
start: int
@@ -104,7 +102,6 @@ class AnnDict(TypedDict):
104102

105103

106104
class AnnResultDict(TypedDict):
107-
108105
"""The annotation result for a sentence"""
109106

110107
original: str

0 commit comments

Comments
 (0)