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
sources.append(
SkillSource(
source_type=SourceType.CUSTOM,
directory=custom_path.resolve(),
priority=PRIORITY_CUSTOM_BASE - i, # Decrement for each additional path
)
)
because of the code below:
skillkit/core/manager.py
PRIORITY_CUSTOM_BASE = 5
sources.append(
SkillSource(
source_type=SourceType.CUSTOM,
directory=custom_path.resolve(),
priority=PRIORITY_CUSTOM_BASE - i, # Decrement for each additional path
)
)