diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index a061c51..852f188 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -40,7 +40,7 @@ repos: files: ^stubs/stubs/ args: [--settings-file, stubs/tox.ini] - repo: https://github.com/PyCQA/docformatter - rev: v1.7.7 + rev: v1.7.8 hooks: - id: docformatter files: ^src/ diff --git a/src/java/lang/__init__.py b/src/java/lang/__init__.py index f266163..5508970 100644 --- a/src/java/lang/__init__.py +++ b/src/java/lang/__init__.py @@ -856,9 +856,10 @@ def __init__(self, message=None, cause=None): class Thread(Object): - """A thread is a thread of execution in a program. The Java Virtual - Machine allows an application to have multiple threads of execution - running concurrently. + """A thread is a thread of execution in a program. + + The Java Virtual Machine allows an application to have multiple + threads of execution running concurrently. Every thread has a name for identification purposes. More than one thread may have the same name. If a name is not specified when a