logger.error("Unable to parse command from worksheet history");
}
if(comm != null){
if(comm instanceof PythonTransformationCommand)
{
PythonTransformationCommand pyTransform = (PythonTransformationCommand) comm;
String transformationCode = pyTransform.getTransformationCode();
PythonTransformationAsURIValidator validator = new PythonTransformationAsURIValidator();
isR2RMLCompatible = isR2RMLCompatible && validator.validate(transformationCode);
}
else