From de135de7c945a9484f06e955aab804eb68ba1ed6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bernd=20M=C3=BCller?= Date: Mon, 25 Nov 2024 13:50:55 +0100 Subject: [PATCH] added comment --- .github/workflows/process_profile_script.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/process_profile_script.py b/.github/workflows/process_profile_script.py index fcb7488..0b627dd 100644 --- a/.github/workflows/process_profile_script.py +++ b/.github/workflows/process_profile_script.py @@ -135,6 +135,10 @@ def generate_rdf_for_profile(self, profile_name, label, comment, publisher, is_p g.serialize(destination=outfile, format="json-ld", auto_compact=True) print("Writing result to", outfile) turtlefile = outfile[-5:] + ".ttl" + + # Writing graph serialization in turtle format as additional files with same + # name but with different file ending for filetype ttl. + print("Writing turtle file to", turtlefile) g.serialize(destination=outfile, format="turtle") g.close()