summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuergen Bocklage-Ryannel <juergen.bocklage-ryannel@pelagicore.com>2017-03-28 18:50:58 +0200
committerJuergen Bocklage-Ryannel <juergen.bocklage-ryannel@pelagicore.com>2017-03-28 18:50:58 +0200
commitd6b3141a2890a29d809a7b2195b395bd90fb4483 (patch)
treeada6cfdf6b66e620a47ca5e12c75684be3c9652d
parented21dc746ab255e0764d9b39e09daf3bbf0022e0 (diff)
downloadqtivi-qface-d6b3141a2890a29d809a7b2195b395bd90fb4483.tar.gz
fixed type in function name
-rw-r--r--qface/generator.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/qface/generator.py b/qface/generator.py
index 476dc4e..6972b6d 100644
--- a/qface/generator.py
+++ b/qface/generator.py
@@ -106,7 +106,7 @@ class FileSystem(object):
logger.debug('parse document: {0}'.format(document))
stream = FileStream(str(document), encoding='utf-8')
system = FileSystem._parse_stream(stream, system)
- FileSystem.merge_annoations(system, document.stripext() + '.yaml')
+ FileSystem.merge_annotations(system, document.stripext() + '.yaml')
return system
@staticmethod
@@ -124,7 +124,7 @@ class FileSystem(object):
return system
@staticmethod
- def merge_annoations(system: System, document: Path):
+ def merge_annotations(system, document):
"""Read a YAML document and for each root symbol identifier
updates the tag information of that symbol
"""