Skip to content

Commit

Permalink
Add missing __all__ definition to attachments/video.py
Browse files Browse the repository at this point in the history
  • Loading branch information
nexy7574 committed Feb 7, 2025
1 parent 99deabc commit 2a52eb0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/niobot/attachment.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,14 @@
from __future__ import annotations

import pathlib
from typing import IO, TypeVar
import logging
import json
import time
import subprocess
import shutil
import io
import tempfile
from typing import IO, TypeVar, Union, Dict, Any, Optional, Type

import PIL.Image

Expand Down
3 changes: 3 additions & 0 deletions src/niobot/attachments/video.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
log = logging.getLogger(__name__)


__all__ = ("VideoAttachment",)


class VideoAttachment(BaseAttachment):
"""Represents a video attachment.
Expand Down

0 comments on commit 2a52eb0

Please sign in to comment.