diff options
author | umarcor <unai.martinezcorral@ehu.eus> | 2021-06-22 19:31:18 +0200 |
---|---|---|
committer | umarcor <unai.martinezcorral@ehu.eus> | 2021-06-23 17:09:44 +0200 |
commit | 6e1bbc43fc29528ceaf5d422461206e29e801744 (patch) | |
tree | a3273f25e220b2c69869c4c8376f31e8229dbcda /pyGHDL/lsp/workspace.py | |
parent | c6283d9a9b40c3e9afeba912fcb13aa9d56b9c52 (diff) | |
download | ghdl-6e1bbc43fc29528ceaf5d422461206e29e801744.tar.gz ghdl-6e1bbc43fc29528ceaf5d422461206e29e801744.tar.bz2 ghdl-6e1bbc43fc29528ceaf5d422461206e29e801744.zip |
fix more codacy issues
Diffstat (limited to 'pyGHDL/lsp/workspace.py')
-rw-r--r-- | pyGHDL/lsp/workspace.py | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/pyGHDL/lsp/workspace.py b/pyGHDL/lsp/workspace.py index cb392be9b..55d4cbe85 100644 --- a/pyGHDL/lsp/workspace.py +++ b/pyGHDL/lsp/workspace.py @@ -23,7 +23,7 @@ log = logging.getLogger(__name__) class ProjectError(Exception): - "Exception raised in case of unrecoverable error in the project file." + """Exception raised in case of unrecoverable error in the project file.""" def __init__(self, msg): super().__init__() @@ -110,8 +110,11 @@ class Workspace(object): return res def get_document(self, doc_uri): - """Get a document from :param doc_uri: Note that the document may not exist, - and this function may return None.""" + """ + Get a document from :param doc_uri: + + Note that the document may not exist, and this function may return None. + """ return self._docs.get(doc_uri) def put_document(self, doc_uri, source, version=None): @@ -126,8 +129,11 @@ class Workspace(object): return doc def sfe_to_document(self, sfe): - """Get the document correspond to :param sfe: source file. - Can create the document if needed.""" + """ + Get the document correspond to :param sfe: source file. + + Can create the document if needed. + """ assert sfe != 0 doc = self._fe_map.get(sfe, None) if doc is None: @@ -288,7 +294,7 @@ class Workspace(object): self.publish_diagnostics(doc.uri, []) def obsolete_dependent_units(self, unit, antideps): - """Obsolete units that depends of :param unit:""" + """Obsolete units that depends of :param unit:.""" udeps = antideps.get(unit, None) if udeps is None: # There are no units. @@ -375,7 +381,7 @@ class Workspace(object): ) def declaration_to_location(self, decl): - "Convert declaration :param decl: to an LSP Location" + """Convert declaration :param decl: to an LSP Location.""" decl_loc = nodes.Get_Location(decl) if decl_loc == std_package.Std_Location.value: # There is no real file for the std.standard package. @@ -472,7 +478,7 @@ class Workspace(object): } def compute_anti_dependences(self): - """Return a dictionnary of anti dependencies for design unit""" + """Return a dictionnary of anti dependencies for design unit.""" res = {} lib = libraries.Get_Libraries_Chain() while lib != nodes.Null_Iir: |