Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ upgrade-submodules:
git submodule update --remote --init --recursive

# TODO: Expand to lib/ and tests/ as linting issues are resolved.
RUFF_TARGET = lib/pyld/context_resolver.py lib/pyld/identifier_issuer.py lib/pyld/iri_resolver.py lib/pyld/nquads.py lib/pyld/resolved_context.py lib/pyld/canon.py tests/*.py
RUFF_TARGET = lib/pyld/*.py tests/*.py

lint:
ruff check $(RUFF_TARGET)
Expand Down
4 changes: 1 addition & 3 deletions lib/pyld/__about__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# PyLD JSON-LD meta data

__all__ = [
'__copyright__', '__license__', '__version__'
]
__all__ = ['__copyright__', '__license__', '__version__']

__copyright__ = 'Copyright (c) 2011-2024 Digital Bazaar, Inc.'
__license__ = 'New BSD license'
Expand Down
3 changes: 2 additions & 1 deletion lib/pyld/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
""" The PyLD module is used to process JSON-LD. """
"""The PyLD module is used to process JSON-LD."""

from . import jsonld
from .context_resolver import ContextResolver

Expand Down
Loading