Skip to content

Commit

Permalink
fix: change src file import path (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
robo-dani authored Mar 12, 2024
1 parent d3ec650 commit e55487e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/bilifm/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from bilifm.command import app
from .command import app
2 changes: 1 addition & 1 deletion src/bilifm/audio.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import requests
import typer

from bilifm.util import get_signed_params
from .util import get_signed_params


class Audio:
Expand Down
6 changes: 3 additions & 3 deletions src/bilifm/command.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import typer

from bilifm.audio import Audio
from bilifm.fav import Fav
from bilifm.user import User
from .audio import Audio
from .fav import Fav
from .user import User

app = typer.Typer()

Expand Down
2 changes: 1 addition & 1 deletion src/bilifm/fav.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import json

from bilifm.util import request
from .util import request


class Fav:
Expand Down
2 changes: 1 addition & 1 deletion src/bilifm/user.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import typer

from bilifm.util import request
from .util import request


class User:
Expand Down

0 comments on commit e55487e

Please sign in to comment.