-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove project name #264
base: develop
Are you sure you want to change the base?
Remove project name #264
Conversation
simpleName = self.getIRI(name).getSimpleName() | ||
return simpleName if len(simpleName) > 0 else self.oldName |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sto notando che se si una un IRI dell'ontologia che termina con #
o /
questo metodo fallisce sempre (viene restituito l'oldName) e non si riesce a far aggiornare il nome in quanto getSimpleName()
restituisce la stringa vuota su queste IRI. Sto cercando di capire se è un problema di getSimpleName
o se possiamo fare qualcosa per evitarlo.
No description provided.