Skip to content

Commit

Permalink
add outfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
glass-ships committed Apr 30, 2024
1 parent 71ef3a3 commit d72cd81
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/koza/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ def __init__(
self.curie_cleaner: CurieCleaner = CurieCleaner()
self.writer: KozaWriter = self._get_writer()
self.logger = logger
self.outfiles = []
if hasattr(self.writer, 'nodes_file_name'):
self.outfiles.append(self.writer.nodes_file_name)
if hasattr(self.writer, 'edges_file_name'):
self.outfiles.append(self.writer.edges_file_name)

if schema:
# self.validate = True
Expand Down

0 comments on commit d72cd81

Please sign in to comment.