This repository was archived by the owner on Jul 8, 2024. It is now read-only.
File tree 33 files changed +38
-3
lines changed
33 files changed +38
-3
lines changed Original file line number Diff line number Diff line change 15
15
You should have received a copy of the GNU General Public License
16
16
along with this program. If not, see <https://www.gnu.org/licenses/>.
17
17
"""
18
+
18
19
from __future__ import annotations
19
20
20
21
import asyncio
Original file line number Diff line number Diff line change 15
15
You should have received a copy of the GNU General Public License
16
16
along with this program. If not, see <https://www.gnu.org/licenses/>.
17
17
"""
18
+
18
19
from __future__ import annotations
19
20
20
21
from importlib .resources import files
Original file line number Diff line number Diff line change 15
15
You should have received a copy of the GNU General Public License
16
16
along with this program. If not, see <https://www.gnu.org/licenses/>.
17
17
"""
18
+
18
19
from __future__ import annotations
19
20
20
21
import json
Original file line number Diff line number Diff line change 15
15
You should have received a copy of the GNU General Public License
16
16
along with this program. If not, see <https://www.gnu.org/licenses/>.
17
17
"""
18
+
18
19
from __future__ import annotations
19
20
20
21
from abc import ABCMeta
Original file line number Diff line number Diff line change 15
15
You should have received a copy of the GNU General Public License
16
16
along with this program. If not, see <https://www.gnu.org/licenses/>.
17
17
"""
18
+
18
19
from __future__ import annotations
19
20
20
21
import warnings
Original file line number Diff line number Diff line change 15
15
You should have received a copy of the GNU General Public License
16
16
along with this program. If not, see <https://www.gnu.org/licenses/>.
17
17
"""
18
+
18
19
from __future__ import annotations
19
20
20
21
import mimetypes
Original file line number Diff line number Diff line change 15
15
You should have received a copy of the GNU General Public License
16
16
along with this program. If not, see <https://www.gnu.org/licenses/>.
17
17
"""
18
+
18
19
from __future__ import annotations
19
20
20
21
from .collector import *
Original file line number Diff line number Diff line change 15
15
You should have received a copy of the GNU General Public License
16
16
along with this program. If not, see <https://www.gnu.org/licenses/>.
17
17
"""
18
+
18
19
from __future__ import annotations
19
20
20
21
from concurrent .futures import Future
Original file line number Diff line number Diff line change 15
15
You should have received a copy of the GNU General Public License
16
16
along with this program. If not, see <https://www.gnu.org/licenses/>.
17
17
"""
18
+
18
19
from __future__ import annotations
19
20
20
21
from abc import ABCMeta
Original file line number Diff line number Diff line change 15
15
You should have received a copy of the GNU General Public License
16
16
along with this program. If not, see <https://www.gnu.org/licenses/>.
17
17
"""
18
+
18
19
from __future__ import annotations
19
20
20
21
import random
Original file line number Diff line number Diff line change 15
15
You should have received a copy of the GNU General Public License
16
16
along with this program. If not, see <https://www.gnu.org/licenses/>.
17
17
"""
18
+
18
19
from __future__ import annotations
19
20
20
21
import random
Original file line number Diff line number Diff line change 15
15
You should have received a copy of the GNU General Public License
16
16
along with this program. If not, see <https://www.gnu.org/licenses/>.
17
17
"""
18
+
18
19
from __future__ import annotations
19
20
20
21
import random
Original file line number Diff line number Diff line change 15
15
You should have received a copy of the GNU General Public License
16
16
along with this program. If not, see <https://www.gnu.org/licenses/>.
17
17
"""
18
+
18
19
from __future__ import annotations
19
20
20
21
import random
Original file line number Diff line number Diff line change 15
15
You should have received a copy of the GNU General Public License
16
16
along with this program. If not, see <https://www.gnu.org/licenses/>.
17
17
"""
18
+
18
19
from __future__ import annotations
19
20
20
21
from concurrent .futures import Future
Original file line number Diff line number Diff line change 15
15
You should have received a copy of the GNU General Public License
16
16
along with this program. If not, see <https://www.gnu.org/licenses/>.
17
17
"""
18
+
18
19
from __future__ import annotations
19
20
20
21
from .common import *
Original file line number Diff line number Diff line change 15
15
You should have received a copy of the GNU General Public License
16
16
along with this program. If not, see <https://www.gnu.org/licenses/>.
17
17
"""
18
+
18
19
from __future__ import annotations
19
20
20
21
from abc import ABCMeta
Original file line number Diff line number Diff line change 15
15
You should have received a copy of the GNU General Public License
16
16
along with this program. If not, see <https://www.gnu.org/licenses/>.
17
17
"""
18
+
18
19
from __future__ import annotations
19
20
20
21
import random
Original file line number Diff line number Diff line change 15
15
You should have received a copy of the GNU General Public License
16
16
along with this program. If not, see <https://www.gnu.org/licenses/>.
17
17
"""
18
+
18
19
from __future__ import annotations
19
20
20
21
import datetime
@@ -416,9 +417,11 @@ def upload(
416
417
self .upload_video (
417
418
media ,
418
419
metadata ,
419
- InstagramVideoType .REELS
420
- if self ._mode == "hybrid"
421
- else InstagramVideoType .VIDEO ,
420
+ (
421
+ InstagramVideoType .REELS
422
+ if self ._mode == "hybrid"
423
+ else InstagramVideoType .VIDEO
424
+ ),
422
425
),
423
426
)
424
427
)
Original file line number Diff line number Diff line change 15
15
You should have received a copy of the GNU General Public License
16
16
along with this program. If not, see <https://www.gnu.org/licenses/>.
17
17
"""
18
+
18
19
from __future__ import annotations
19
20
20
21
from pathlib import Path
Original file line number Diff line number Diff line change 15
15
You should have received a copy of the GNU General Public License
16
16
along with this program. If not, see <https://www.gnu.org/licenses/>.
17
17
"""
18
+
18
19
from __future__ import annotations
19
20
20
21
import time
Original file line number Diff line number Diff line change 15
15
You should have received a copy of the GNU General Public License
16
16
along with this program. If not, see <https://www.gnu.org/licenses/>.
17
17
"""
18
+
18
19
from __future__ import annotations
19
20
20
21
import typing
Original file line number Diff line number Diff line change 15
15
You should have received a copy of the GNU General Public License
16
16
along with this program. If not, see <https://www.gnu.org/licenses/>.
17
17
"""
18
+
18
19
from __future__ import annotations
19
20
20
21
from .frozen_dict import *
Original file line number Diff line number Diff line change 15
15
You should have received a copy of the GNU General Public License
16
16
along with this program. If not, see <https://www.gnu.org/licenses/>.
17
17
"""
18
+
18
19
from __future__ import annotations
19
20
20
21
from collections .abc import Mapping
Original file line number Diff line number Diff line change 15
15
You should have received a copy of the GNU General Public License
16
16
along with this program. If not, see <https://www.gnu.org/licenses/>.
17
17
"""
18
+
18
19
from __future__ import annotations
19
20
20
21
from .common import *
Original file line number Diff line number Diff line change 15
15
You should have received a copy of the GNU General Public License
16
16
along with this program. If not, see <https://www.gnu.org/licenses/>.
17
17
"""
18
+
18
19
from __future__ import annotations
19
20
20
21
import asyncio
Original file line number Diff line number Diff line change 15
15
You should have received a copy of the GNU General Public License
16
16
along with this program. If not, see <https://www.gnu.org/licenses/>.
17
17
"""
18
+
18
19
from __future__ import annotations
19
20
20
21
from asyncio import Task , get_event_loop
Original file line number Diff line number Diff line change 15
15
You should have received a copy of the GNU General Public License
16
16
along with this program. If not, see <https://www.gnu.org/licenses/>.
17
17
"""
18
+
18
19
from __future__ import annotations
19
20
20
21
from asyncio import Task , get_event_loop
Original file line number Diff line number Diff line change 15
15
You should have received a copy of the GNU General Public License
16
16
along with this program. If not, see <https://www.gnu.org/licenses/>.
17
17
"""
18
+
18
19
from __future__ import annotations
19
20
20
21
from os import environ
Original file line number Diff line number Diff line change 15
15
You should have received a copy of the GNU General Public License
16
16
along with this program. If not, see <https://www.gnu.org/licenses/>.
17
17
"""
18
+
18
19
from __future__ import annotations
19
20
20
21
from pathlib import Path
Original file line number Diff line number Diff line change 15
15
You should have received a copy of the GNU General Public License
16
16
along with this program. If not, see <https://www.gnu.org/licenses/>.
17
17
"""
18
+
18
19
from __future__ import annotations
19
20
20
21
from .common import ThreadWatcher
Original file line number Diff line number Diff line change 15
15
You should have received a copy of the GNU General Public License
16
16
along with this program. If not, see <https://www.gnu.org/licenses/>.
17
17
"""
18
+
18
19
from __future__ import annotations
19
20
20
21
import mimetypes
Original file line number Diff line number Diff line change 15
15
You should have received a copy of the GNU General Public License
16
16
along with this program. If not, see <https://www.gnu.org/licenses/>.
17
17
"""
18
+
18
19
from __future__ import annotations
19
20
20
21
from logging import getLogger
Original file line number Diff line number Diff line change 15
15
You should have received a copy of the GNU General Public License
16
16
along with this program. If not, see <https://www.gnu.org/licenses/>.
17
17
"""
18
+
18
19
from __future__ import annotations
You can’t perform that action at this time.
0 commit comments