diff options
author | Xiretza <xiretza@xiretza.xyz> | 2021-04-26 12:43:56 +0200 |
---|---|---|
committer | umarcor <unai.martinezcorral@ehu.eus> | 2021-04-26 16:30:41 +0200 |
commit | fcd93aa12cff63570409fbaede572d7eee2e8fa8 (patch) | |
tree | 534fed97f08ab6895763a9ca9d803972123020fd /pyGHDL | |
parent | 5c6b2eb7bf6633a8e80d39dbcc024a466fca29ee (diff) | |
download | ghdl-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.py | 2 |
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)) |