File size: 431 Bytes
fc0f7bd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
"""Package for the fairlearn Dashboard widget."""
from ._fairlearn_dashboard import FairlearnDashboard
__all__ = ['FairlearnDashboard']
def _jupyter_nbextension_paths():
return [{
'section': 'notebook',
'src': 'static',
'dest': 'fairlearn-widget',
'require': 'fairlearn-widget/extension'
}]
|