Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ dependencies = [
"google-api-python-client",
"google-auth-oauthlib",
"frozendict",
"typer[all]>=0.9.0",
"typer[all]>=0.26.8",
# "face_recognition", # Опциональная зависимость, может быть добавлена при необходимости
"coverage"
]
Expand Down
6 changes: 3 additions & 3 deletions src/justin/actions/mixins.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from justin.shared import filesystem
from justin.shared.filesystem import Folder
from justin_utils.filesystem import Folder, open_file_manager

from justin.shared.metafiles.metafile import GroupMetafile
from justin.shared.models.photoset import Photoset

Expand All @@ -22,7 +22,7 @@ def get_community_id(posts_folder: Folder, root_photoset: Photoset) -> str | Non
)

if not answer:
filesystem.open_file_manager(posts_folder.path)
open_file_manager(posts_folder.path)
elif not EventUtils.__validate(answer):
print("This was not event url. Try another.")
else:
Expand Down
2 changes: 1 addition & 1 deletion src/justin/cms_2/sub_cms/photosets_cms.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

from justin.cms_2.storage.sqlite.sqlite_database import SQLiteDatabase, SQLiteEntry
from justin.cms_2.storage.sqlite.sqlite_entries import Closed, Photoset as PhotosetEntry, PersonPhotos, Drive, MyPeople
from justin.shared.filesystem import Folder
from justin_utils.filesystem import Folder
from justin.shared.metafiles.metafile import PhotosetMetafile
from justin.shared.models.photoset import Photoset
from justin_utils.util import bfs
Expand Down
2 changes: 1 addition & 1 deletion src/justin/one_timers/embrace_tradition.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from collections import defaultdict
from pathlib import Path

from justin.shared.filesystem import Folder
from justin_utils.filesystem import Folder


def main():
Expand Down
2 changes: 1 addition & 1 deletion src/justin/one_timers/progress_inverter.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from pathlib import Path

from justin.shared.filesystem import Folder
from justin_utils.filesystem import Folder


def main():
Expand Down
2 changes: 1 addition & 1 deletion src/justin/postmypost/postmypost.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from justin.postmypost.channels import get_channels
from justin.postmypost.utils import get_all
from justin.shared.filesystem import File
from justin_utils.filesystem import File

configuration = Configuration(
access_token=os.environ["BEARER_TOKEN"]
Expand Down
Loading
Loading