aboutsummaryrefslogtreecommitdiffstats
path: root/pyGHDL/libghdl/_types.py
diff options
context:
space:
mode:
authorXiretza <xiretza@xiretza.xyz>2021-02-10 19:17:23 +0100
committertgingold <tgingold@users.noreply.github.com>2021-02-10 21:36:22 +0100
commitd52693df5bc7480c3917b7248f8602f2942aeab7 (patch)
tree6404e02d6f053a6b53c561c6b60a6a54152a9e63 /pyGHDL/libghdl/_types.py
parent8f563f9df8ad94e44f1bd8eecd91d5611e507cc7 (diff)
downloadghdl-d52693df5bc7480c3917b7248f8602f2942aeab7.tar.gz
ghdl-d52693df5bc7480c3917b7248f8602f2942aeab7.tar.bz2
ghdl-d52693df5bc7480c3917b7248f8602f2942aeab7.zip
pyGHDL: format using black
Diffstat (limited to 'pyGHDL/libghdl/_types.py')
-rw-r--r--pyGHDL/libghdl/_types.py24
1 files changed, 12 insertions, 12 deletions
diff --git a/pyGHDL/libghdl/_types.py b/pyGHDL/libghdl/_types.py
index 4e8112ec1..b1e6410fe 100644
--- a/pyGHDL/libghdl/_types.py
+++ b/pyGHDL/libghdl/_types.py
@@ -34,18 +34,18 @@
from typing import TypeVar
__all__ = [
- 'ErrorIndex',
- 'MessageIdWarnings',
- 'NameId',
- 'SourceFileEntry',
- 'Iir',
- 'IirKind'
+ "ErrorIndex",
+ "MessageIdWarnings",
+ "NameId",
+ "SourceFileEntry",
+ "Iir",
+ "IirKind",
]
-ErrorIndex = TypeVar('ErrorIndex', bound=int)
-MessageIdWarnings = TypeVar('MessageIdWarnings', bound=int)
-NameId = TypeVar('NameId', bound=int)
-SourceFileEntry = TypeVar('SourceFileEntry', bound=int)
+ErrorIndex = TypeVar("ErrorIndex", bound=int)
+MessageIdWarnings = TypeVar("MessageIdWarnings", bound=int)
+NameId = TypeVar("NameId", bound=int)
+SourceFileEntry = TypeVar("SourceFileEntry", bound=int)
-Iir = TypeVar('Iir', bound=int)
-IirKind = TypeVar('IirKind', bound=int)
+Iir = TypeVar("Iir", bound=int)
+IirKind = TypeVar("IirKind", bound=int)