mirror of
https://github.com/Dictionarry-Hub/profilarr.git
synced 2026-01-24 19:51:03 +01:00
- added option to set radarr/sonarr specific scores that profilarr's compiler will handle on import - revise design for arr settings container - now styled as a table - completely rewrote import module. Now uses connection pooling to reuse connections. - fixed import progress bug where 1 failed format causes all other formats to be labelled as failed (even if they succeeded) - fixed bug where on pull sync wasn't working - improve styling for link / unlink database modals - fixed issue where 0 score formats were removed in selective mode
6 lines
196 B
Python
6 lines
196 B
Python
"""Import strategies."""
|
|
from .base import ImportStrategy
|
|
from .format import FormatStrategy
|
|
from .profile import ProfileStrategy
|
|
|
|
__all__ = ['ImportStrategy', 'FormatStrategy', 'ProfileStrategy'] |