Skip to content
Open
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
8 changes: 4 additions & 4 deletions plugin/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
from pathlib import Path

from flox import Flox
from playnite import DEFAULT_PLAYNITE_DIR, PlayniteApp
from result import Result, OpenInPlaynite, LaunchGameContext
from filters import IsInstalled, IsHidden
from exceptions import PlayniteNotFound, LibraryNotFound
from .playnite import DEFAULT_PLAYNITE_DIR, PlayniteApp
from .result import Result, OpenInPlaynite, LaunchGameContext
from .filters import IsInstalled, IsHidden
from .exceptions import PlayniteNotFound, LibraryNotFound

PLUGIN_URI = 'playnite://playnite/installaddon/FlowLauncherExporter'

Expand Down
6 changes: 3 additions & 3 deletions plugin/playnite.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
import os
from dataclasses import dataclass, field
from typing import List
from filters import LibraryFilter, filter_game, IsID
from game import Game, ID
from exceptions import PlayniteNotFound, LibraryNotFound
from .filters import LibraryFilter, filter_game, IsID
from .game import Game, ID
from .exceptions import PlayniteNotFound, LibraryNotFound


PLAYNITE_DIR_NAME = 'Playnite'
Expand Down
2 changes: 1 addition & 1 deletion plugin/result.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from __future__ import annotations

from playnite import Game
from .playnite import Game

class Result:

Expand Down
2 changes: 1 addition & 1 deletion run.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
from plugin.main import Playnite

if __name__ == "__main__":
Playnite()
Playnite().run()