summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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
"""