mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Convert to explicit imports.
This commit is contained in:
parent
ab9473fa95
commit
65cc6b918c
2 changed files with 5 additions and 5 deletions
|
@ -24,7 +24,7 @@
|
|||
from pysollib.gamedb import registerGame, GameInfo, GI
|
||||
from pysollib.util import *
|
||||
from pysollib.stack import *
|
||||
from game import Game
|
||||
from pysollib.game import Game
|
||||
from pysollib.layout import Layout
|
||||
from pysollib.hint import AbstractHint, DefaultHint, CautiousDefaultHint, Yukon_Hint
|
||||
|
||||
|
|
|
@ -212,11 +212,11 @@ def pysol_init(app, args):
|
|||
def progressCallback(*args):
|
||||
app.intro.progress.update(step=1)
|
||||
GAME_DB.setCallback(progressCallback)
|
||||
import games
|
||||
import pysollib.games
|
||||
if not opts['french-only']:
|
||||
import games.ultra
|
||||
import games.mahjongg
|
||||
import games.special
|
||||
import pysollib.games.ultra
|
||||
import pysollib.games.mahjongg
|
||||
import pysollib.games.special
|
||||
|
||||
# try to load plugins
|
||||
if not opts["noplugins"]:
|
||||
|
|
Loading…
Add table
Reference in a new issue