LeMyst / LeMyst/WikibaseIntegrator

Claims error when Processing ops.

Closed
#831 1 comment 0 reactions 1 assignee View on GitHub

@LeMyst is already working on this.

Since Jan 30, 2025.

Dominant language
Python
Stars
92
Forks
22
Avg merge
2d 34m
Merged PRs (30d)
10

Description

I am processing a TTL file as the target content using the following line of code:
ops = synchronizer.synchronize(source_content, target_content)

Also. I am printing the exceptions:

ops = synchronizer.synchronize(source_content, target_content)
for op in ops:
try:
res = op.execute(adapter)
if not res.successful:
print(f"Error synchronizing triple: {res.message}")
except ValueError as exv:
print(f"Value Error: synchronizing triple: {exv}")
except NotImplementedError as exn:
print( f"NotImplementedError: synchronizing triple: {exn}")
except Exception as ex:
print( f"Exception: synchronizing triple: {ex}")

This is the error I am getting:
Exception: synchronizing triple: 'claims'

I would appreciate any pointers as to why I am getting this error when processing the TTL file.

Contributor guide

No contributing guide indexed for this repository

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.