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
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"""
A single-class module, providing the BasicAssetLibraryInterface class.
"""

import json
import os
import re
Expand Down Expand Up @@ -48,7 +49,6 @@

from . import bal


__all__ = [
"BasicAssetLibraryInterface",
]
Expand Down
1 change: 1 addition & 0 deletions plugin/openassetio_manager_bal/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
need to be on `$PYTHONPATH` directly, the plugin system takes care
of extending Python's runtime paths accordingly.
"""

import os

# pylint: disable=import-outside-toplevel, invalid-name
Expand Down
1 change: 1 addition & 0 deletions tests/bal_functional_behaviour_suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
behaviors that don't fall under "business-logic", such as performance
related requirements.
"""

import contextlib
import operator

Expand Down
1 change: 0 additions & 1 deletion tests/fixtures.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
from openassetio.trait import TraitsData
from openassetio_mediacreation.traits.lifecycle import VersionTrait


#
# Test library
#
Expand Down
1 change: 0 additions & 1 deletion tests/test_bal.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
from openassetio.test.manager import harness, apiComplianceSuite
from openassetio.pluginSystem import PythonPluginSystemManagerPlugin


#
# Tests
#
Expand Down
Loading