Skip to content

fix for issue that it gives error module not found #22

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 26, 2023
Merged
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
11 changes: 10 additions & 1 deletion robloxpyc/robloxpy.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,16 @@
from packaging import version
from tqdm import tqdm
from time import sleep
import sys
import os
# written by luxkatana/TheTrojanHorse fix:
# fix importing problems using the CLI

EXPECTED_PATH_NEEDED: str = os.path.dirname(__file__)
if len(set(filter(lambda path: EXPECTED_PATH_NEEDED == path, sys.path))) == 0:
sys.path.append(EXPECTED_PATH_NEEDED)


# FILES
if __name__ == "__main__":
from robloxpyc import colortext #ctranslator is old and not used
Expand Down Expand Up @@ -37,7 +46,7 @@
from .climaker import newIncli, newIncli2, newLanguage
from .wally import wallyget
# BUILTIN
import subprocess,shutil,sys,threading,json,requests,traceback,pkg_resources,re,sys,webbrowser,pickle, os, zipfile
import subprocess,shutil,sys,threading,json,requests,traceback,pkg_resources,re,sys,webbrowser,pickle, zipfile


registryrawurl = "https://raw.githubusercontent.com/roblox-pyc/registry/main/registry.json"
Expand Down