Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
rafleze committed May 7, 2024
1 parent 4c5bf07 commit 7e21403
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion custom_cipher.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@

class Cipher:
def __init__(self, js: str):
print("STO PASSANDO QUI")
self.transform_plan: List[str] = get_transform_plan(js)
var_regex = re.compile(r"^[\w\$_]+\W")
var_match = var_regex.search(self.transform_plan[0])
Expand Down
2 changes: 1 addition & 1 deletion tests/test_transcriber.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import pytest
from unittest import TestCase
from unittest.mock import patch
from youtube2text.transcriber import transcribe
from ..transcriber import transcribe


@patch("youtube2text.transcriber.YouTube")
Expand Down
2 changes: 1 addition & 1 deletion transcriber.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from faster_whisper import WhisperModel
import tempfile
import os
from custom_cipher import Cipher as CustomCipher
from .custom_cipher import Cipher as CustomCipher
from unittest.mock import patch


Expand Down

0 comments on commit 7e21403

Please sign in to comment.