Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor sub modules #78

Merged
merged 22 commits into from
Dec 7, 2022
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
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
Prev Previous commit
Next Next commit
Minor tweak to lookup formatting
  • Loading branch information
RNKuhns committed Nov 22, 2022
commit 43111ad1685eb9eb0638a888314e629c99a1fc86
3 changes: 2 additions & 1 deletion skbase/lookup/_lookup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python3 -u
# -*- coding: utf-8 -*-
# copyright: skbase developers, BSD-3-Clause License (see LICENSE file)
"""Tools to lookup information on code artifacts in a Python package or module.
Expand All @@ -8,12 +9,12 @@
Walk package and return metadata on included classes and functions by module.
all_objects(object_types, filter_tags)
Look (and optionally filter) BaseObject descendants in a package or module.

"""
# all_objects is based on the sktime all_estimator retrieval utility, which
# is based on the sklearn estimator retrieval utility of the same name
# See https://github.com/scikit-learn/scikit-learn/blob/main/COPYING and
# https://github.com/alan-turing-institute/sktime/blob/main/LICENSE

import importlib
import inspect
import io
Expand Down