diff options
Diffstat (limited to 'discord/file.py')
| -rw-r--r-- | discord/file.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/discord/file.py b/discord/file.py index df83f32e..38c165d0 100644 --- a/discord/file.py +++ b/discord/file.py @@ -25,6 +25,10 @@ DEALINGS IN THE SOFTWARE. import os.path import io +__all__ = ( + 'File', +) + class File: r"""A parameter object used for :meth:`abc.Messageable.send` for sending file objects. |