Skip to content

Commit

Permalink
Update file_share.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Freaku17 committed Dec 8, 2023
1 parent 9770913 commit 08e9cee
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion plugins/utilities/file_share.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,14 @@
import logging
from babase._general import Call
from typing import TYPE_CHECKING
from baenv import TARGET_BALLISTICA_BUILD
if TYPE_CHECKING:
from typing import Any, Callable, Sequence

app = _babase.app

MODS_DIR = app.env.python_directory_user

MODS_DIR = app.python_directory_user if TARGET_BALLISTICA_BUILD < 21282 else app.env.python_directory_user
REPLAYS_DIR = bui.get_replays_dir()
HEADERS = {
'accept': 'application/json',
Expand Down

0 comments on commit 08e9cee

Please sign in to comment.