Skip to content

Commit

Permalink
lint(): add missing library, remove unused dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
AmitMY committed Feb 16, 2024
1 parent 1759902 commit 0ebb24b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ pose_to_signwriting = [
"sign-vq @ git+https://github.com/sign-language-processing/sign-vq.git", # Used for normalization
"sentencepiece",
"pandas",
"google-api-python-client", # Uploads results to Google Sheets
# Uploads results to Google Sheets
"google-auth-oauthlib",
"google-api-python-client",
]
pose_to_vq_to_signwriting = [
"sign-vq @ git+https://github.com/sign-language-processing/sign-vq.git" # Used for getting codes from poses
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import argparse
from functools import lru_cache

from signwriting.tokenizer import SignWritingTokenizer
from signwriting_evaluation.metrics.bleu import SignWritingBLEU
Expand Down

0 comments on commit 0ebb24b

Please sign in to comment.