summaryrefslogtreecommitdiff
path: root/pylint/typing.py
diff options
context:
space:
mode:
authorDaniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>2022-02-10 19:30:15 +0100
committerGitHub <noreply@github.com>2022-02-10 19:30:15 +0100
commit595ec422d6f9bd32f42c356d2f316ec69e0f7bee (patch)
tree766a12ddd91b43e09f670f913a4069bc7dc82d57 /pylint/typing.py
parente3d5deca2886d9e2d5f2be2a252e39e02ae42b96 (diff)
downloadpylint-git-595ec422d6f9bd32f42c356d2f316ec69e0f7bee.tar.gz
Update ``pydocstringformatter`` to 0.4.0 (#5787)
Diffstat (limited to 'pylint/typing.py')
-rw-r--r--pylint/typing.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/pylint/typing.py b/pylint/typing.py
index 09e4df126..84c49df55 100644
--- a/pylint/typing.py
+++ b/pylint/typing.py
@@ -12,7 +12,7 @@ else:
class FileItem(NamedTuple):
- """Represents data about a file handled by pylint
+ """Represents data about a file handled by pylint.
Each file item has:
- name: full name of the module
@@ -26,7 +26,7 @@ class FileItem(NamedTuple):
class ModuleDescriptionDict(TypedDict):
- """Represents data about a checked module"""
+ """Represents data about a checked module."""
path: str
name: str
@@ -36,7 +36,7 @@ class ModuleDescriptionDict(TypedDict):
class ErrorDescriptionDict(TypedDict):
- """Represents data about errors collected during checking of a module"""
+ """Represents data about errors collected during checking of a module."""
key: Literal["fatal"]
mod: str
@@ -44,7 +44,7 @@ class ErrorDescriptionDict(TypedDict):
class MessageLocationTuple(NamedTuple):
- """Tuple with information about the location of a to-be-displayed message"""
+ """Tuple with information about the location of a to-be-displayed message."""
abspath: str
path: str
@@ -57,7 +57,7 @@ class MessageLocationTuple(NamedTuple):
class ManagedMessage(NamedTuple):
- """Tuple with information about a managed message of the linter"""
+ """Tuple with information about a managed message of the linter."""
name: Optional[str]
msgid: str