Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
imacodr committed Jan 4, 2025
1 parent fc2e69c commit 74513be
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 15 deletions.
6 changes: 3 additions & 3 deletions jetstreamcli/cmds.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
from termcolor import colored
from colorama import Fore
import inquirer
from .frames import transform_video
from .robloxfuncs import upload_images, get_image_ids, generate_script
from .files import read_file
from jetstreamcli.frames import transform_video
from jetstreamcli.robloxfuncs import upload_images, get_image_ids, generate_script
from jetstreamcli.files import read_file

regex = r"([a-zA-Z]+) (\d+)"

Expand Down
8 changes: 4 additions & 4 deletions jetstreamcli/jetstream.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import os
import click

from .config import load_config, PROJECTS_DIR
from .cmds import create, builds
from .robloxcmds import set,uploader,test
from .projectscmds import view, open, generate, download
from jetstreamcli.config import load_config, PROJECTS_DIR
from jetstreamcli.cmds import create, builds
from jetstreamcli.robloxcmds import set,uploader,test
from jetstreamcli.projectscmds import view, open, generate, download

@click.group()
@click.version_option()
Expand Down
6 changes: 3 additions & 3 deletions jetstreamcli/projectscmds.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

from pathlib import Path
from colorama import Fore
from .robloxfuncs import generate_script, get_image_ids, upload_images
from .files import read_file
from .cmds import find
from jetstreamcli.robloxfuncs import generate_script, get_image_ids, upload_images
from jetstreamcli.files import read_file
from jetstreamcli.cmds import find

@click.command()
@click.pass_context
Expand Down
4 changes: 2 additions & 2 deletions jetstreamcli/robloxcmds.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
import inquirer

from colorama import Fore
from .config import load_config, save_config
from .robloxfuncs import keyTest
from jetstreamcli.config import load_config, save_config
from jetstreamcli.robloxfuncs import keyTest

@click.command()
@click.option("-k", "--key", prompt="Enter Key", help="Your Roblox Cloud Key", type = str)
Expand Down
4 changes: 2 additions & 2 deletions jetstreamcli/robloxfuncs.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
from colorama import Fore, Back, Style
from termcolor import colored

from .config import load_config
from .files import merge_file, write_file
from jetstreamcli.config import load_config
from jetstreamcli.files import merge_file, write_file

def get_key():
config = load_config()
Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
[tool.poetry]
name = "jetstreamcli"
version = "0.1.1"
version = "0.1.21"
description = "Roblox utility tool for converting videos/gifs into frames for importing into Roblox"
authors = ["Sam Perillo <[email protected]>"]
readme = "README.md"
packages = [
{ include = "jetstreamcli" },
]

[tool.poetry.dependencies]
python = "^3.13"
Expand Down

0 comments on commit 74513be

Please sign in to comment.