Skip to content

Commit

Permalink
list to tuple for __all__, to placate pydocstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdutton committed Oct 13, 2020
1 parent 8a55a0b commit f03154a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion invenio_files_rest/storage/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
from ..models import FileInstance


__all__ = ['FileStorage', 'StorageBackend']
__all__ = ('FileStorage', 'StorageBackend')


class StorageBackend:
Expand Down
2 changes: 1 addition & 1 deletion invenio_files_rest/storage/pyfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from .base import StorageBackend
from .legacy import PyFSFileStorage, pyfs_storage_factory

__all__ = ['PyFSFileStorage', 'pyfs_storage_factory', 'PyFSStorageBackend']
__all__ = ('PyFSFileStorage', 'pyfs_storage_factory', 'PyFSStorageBackend')

from ..utils import check_size, check_sizelimit

Expand Down

0 comments on commit f03154a

Please sign in to comment.