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
{{ message }}
This repository was archived by the owner on Mar 8, 2021. It is now read-only.
The doc for FixturesManager states that it accepts "list_or_str" of filenames. However, it always calls extend on the given parameter. If the input is a list, appending a list to a list gives you a list of lists. In this case self.filenames should be extending the given input.
The doc for
FixturesManagerstates that it accepts "list_or_str" of filenames. However, it always callsextendon the given parameter. If the input is a list, appending a list to a list gives you a list of lists. In this caseself.filenamesshould be extending the given input.