RDFLib / rdflib

RDFLib is a Python library for working with RDF, a simple yet powerful language for representing information.
https://rdflib.readthedocs.org
BSD 3-Clause "New" or "Revised" License
2.11k stars 547 forks source link

fix: task expected type string, got bool #2791

Closed wallberg closed 2 weeks ago

wallberg commented 1 month ago

Summary of changes

Fixed Taskfile.yml in several places where a variable was provided as type bool, but string was expected, causing task to fail to execute, for example:

$ task lint
task: Failed to run task "lint": template: :1:63: executing "" at <"false">: wrong type for value; expected string; got bool

Checklist