aboutsummaryrefslogtreecommitdiffstats
path: root/pyGHDL
diff options
context:
space:
mode:
authorXiretza <xiretza@xiretza.xyz>2021-04-26 12:43:56 +0200
committerumarcor <unai.martinezcorral@ehu.eus>2021-04-26 16:30:41 +0200
commitfcd93aa12cff63570409fbaede572d7eee2e8fa8 (patch)
tree534fed97f08ab6895763a9ca9d803972123020fd /pyGHDL
parent5c6b2eb7bf6633a8e80d39dbcc024a466fca29ee (diff)
downloadghdl-fcd93aa12cff63570409fbaede572d7eee2e8fa8.tar.gz
ghdl-fcd93aa12cff63570409fbaede572d7eee2e8fa8.tar.bz2
ghdl-fcd93aa12cff63570409fbaede572d7eee2e8fa8.zip
pyGHDL: update formatting to black 21.4
Diffstat (limited to 'pyGHDL')
-rw-r--r--pyGHDL/lsp/document.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyGHDL/lsp/document.py b/pyGHDL/lsp/document.py
index 1ef510d52..7f1280050 100644
--- a/pyGHDL/lsp/document.py
+++ b/pyGHDL/lsp/document.py
@@ -50,7 +50,7 @@ class Document(object):
return sfe
def reload(self, source):
- """Reload the source of a document. """
+ """Reload the source of a document."""
src_bytes = source.encode(Document.encoding, "replace")
files_map_editor.Fill_Text(self._fe, ctypes.c_char_p(src_bytes), len(src_bytes))