You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The __init__.py file currently contains utility functions that are not directly related to package initialization. To improve code organization and maintain a clean separation of concepts, these utility functions should be moved to a dedicated utils.py module.
Expected behavior
Everywhere that we are importing from copulas import <utility function> should be from copulas.utils import <utility function> instead.
Additional context
Verify that this change does not break any existing functionality.
Consider adding any missing documentation for these utility functions while moving them.
Use functools to create the decorators if the utility function is meant to be a wrapper.
The text was updated successfully, but these errors were encountered:
Problem Description
The
__init__.py
file currently contains utility functions that are not directly related to package initialization. To improve code organization and maintain a clean separation of concepts, these utility functions should be moved to a dedicatedutils.py
module.Expected behavior
Everywhere that we are importing
from copulas import <utility function>
should befrom copulas.utils import <utility function>
instead.Additional context
functools
to create the decorators if the utility function is meant to be a wrapper.The text was updated successfully, but these errors were encountered: