🧹 cleanup: fix typos

This commit is contained in:
Type-Delta
2025-01-23 07:40:42 +07:00
parent 80d9f732b1
commit 87a97dd0c6
11 changed files with 36 additions and 36 deletions

View File

@@ -60,7 +60,7 @@ signal.signal(signal.SIGINT, handle_exit)
fastanime --icons --default anilist
\b
# viewing manga
fastanime --manga search -t <manga-title>
fastanime --manga search -t <manga-title>
""",
)
@click.version_option(__version__, "--version")
@@ -142,7 +142,7 @@ signal.signal(signal.SIGINT, handle_exit)
@click.option(
"--normalize-titles/--no-normalize-titles",
type=bool,
help="whether to normalize anime and episode titls given by providers",
help="whether to normalize anime and episode titles given by providers",
)
@click.option("-d", "--downloads-dir", type=click.Path(), help="Downloads location")
@click.option("--fzf", is_flag=True, help="Use fzf for the ui")

View File

@@ -19,7 +19,7 @@ def login(config: "Config", status, erase):
if status:
is_logged_in = True if config.user else False
message = (
"You are logged in :smile:" if is_logged_in else "You arent logged in :cry:"
"You are logged in :smile:" if is_logged_in else "You aren't logged in :cry:"
)
print(message)
print(config.user)

View File

@@ -2,7 +2,7 @@ import click
@click.command(
help="Get random anime from anilist based on a range of anilist anime ids that are seected at random",
help="Get random anime from anilist based on a range of anilist anime ids that are selected at random",
short_help="View random anime",
)
@click.option(

View File

@@ -2,7 +2,7 @@ import click
@click.command(
help="Fetch the 15 most anticipited anime", short_help="View upcoming anime"
help="Fetch the 15 most anticipated anime", short_help="View upcoming anime"
)
@click.option(
"--dump-json",

View File

@@ -59,7 +59,7 @@ def get_anime_titles(query: str, variables: dict = {}):
else:
return []
except Exception as e:
logger.error(f"Something unexpected occured {e}")
logger.error(f"Something unexpected occurred {e}")
return []

View File

@@ -96,7 +96,7 @@ def write_search_results(
titles: list[str],
workers: int | None = None,
):
"""A helper function used by and run in a background thread by get_fzf_preview function inorder to get the actual preview data to be displayed by fzf
"""A helper function used by and run in a background thread by get_fzf_preview function in order to get the actual preview data to be displayed by fzf
Args:
anilist_results: the anilist results from an anilist action
@@ -122,7 +122,7 @@ def write_search_results(
# handle the text data
template = f"""
ll=2
while [ $ll -le $FZF_PREVIEW_COLUMNS ];do
while [ $ll -le $FZF_PREVIEW_COLUMNS ];do
echo -n -e "{get_true_fg("",*SEPARATOR_COLOR,bold=False)}"
((ll++))
done
@@ -130,7 +130,7 @@ def write_search_results(
echo "{get_true_fg('Title(jp):',*HEADER_COLOR)} {(anime['title']['romaji'] or "").replace('"',SINGLE_QUOTE)}"
echo "{get_true_fg('Title(eng):',*HEADER_COLOR)} {(anime['title']['english'] or "").replace('"',SINGLE_QUOTE)}"
ll=2
while [ $ll -le $FZF_PREVIEW_COLUMNS ];do
while [ $ll -le $FZF_PREVIEW_COLUMNS ];do
echo -n -e "{get_true_fg("",*SEPARATOR_COLOR,bold=False)}"
((ll++))
done
@@ -141,7 +141,7 @@ def write_search_results(
echo "{get_true_fg('Next Episode:',*HEADER_COLOR)} {anilist_data_helper.extract_next_airing_episode(anime['nextAiringEpisode']).replace('"',SINGLE_QUOTE)}"
echo "{get_true_fg('Genres:',*HEADER_COLOR)} {anilist_data_helper.format_list_data_with_comma(anime['genres']).replace('"',SINGLE_QUOTE)}"
ll=2
while [ $ll -le $FZF_PREVIEW_COLUMNS ];do
while [ $ll -le $FZF_PREVIEW_COLUMNS ];do
echo -n -e "{get_true_fg("",*SEPARATOR_COLOR,bold=False)}"
((ll++))
done
@@ -150,7 +150,7 @@ def write_search_results(
echo "{get_true_fg('Start Date:',*HEADER_COLOR)} {anilist_data_helper.format_anilist_date_object(anime['startDate']).replace('"',SINGLE_QUOTE)}"
echo "{get_true_fg('End Date:',*HEADER_COLOR)} {anilist_data_helper.format_anilist_date_object(anime['endDate']).replace('"',SINGLE_QUOTE)}"
ll=2
while [ $ll -le $FZF_PREVIEW_COLUMNS ];do
while [ $ll -le $FZF_PREVIEW_COLUMNS ];do
echo -n -e "{get_true_fg("",*SEPARATOR_COLOR,bold=False)}"
((ll++))
done
@@ -158,7 +158,7 @@ def write_search_results(
echo "{get_true_fg('Media List:',*HEADER_COLOR)} {mediaListName.replace('"',SINGLE_QUOTE)}"
echo "{get_true_fg('Progress:',*HEADER_COLOR)} {progress}"
ll=2
while [ $ll -le $FZF_PREVIEW_COLUMNS ];do
while [ $ll -le $FZF_PREVIEW_COLUMNS ];do
echo -n -e "{get_true_fg("",*SEPARATOR_COLOR,bold=False)}"
((ll++))
done
@@ -305,7 +305,7 @@ def get_fzf_episode_preview(
template = textwrap.dedent(
f"""
ll=2
while [ $ll -le $FZF_PREVIEW_COLUMNS ];do
while [ $ll -le $FZF_PREVIEW_COLUMNS ];do
echo -n -e "{get_true_fg("",*SEPARATOR_COLOR,bold=False)}"
((ll++))
done
@@ -313,13 +313,13 @@ def get_fzf_episode_preview(
echo "{get_true_fg('Anime Title(jp):',*HEADER_COLOR)} {(anilist_result['title']['romaji'] or '').replace('"',SINGLE_QUOTE)}"
ll=2
while [ $ll -le $FZF_PREVIEW_COLUMNS ];do
while [ $ll -le $FZF_PREVIEW_COLUMNS ];do
echo -n -e "{get_true_fg("",*SEPARATOR_COLOR,bold=False)}"
((ll++))
done
echo "{str(episode_title).replace('"',SINGLE_QUOTE)}"
ll=2
while [ $ll -le $FZF_PREVIEW_COLUMNS ];do
while [ $ll -le $FZF_PREVIEW_COLUMNS ];do
echo -n -e "{get_true_fg("",*SEPARATOR_COLOR,bold=False)}"
((ll++))
done
@@ -352,15 +352,15 @@ def get_fzf_episode_preview(
title={}
show_image_previews="%s"
dim=${FZF_PREVIEW_COLUMNS}x${FZF_PREVIEW_LINES}
if [ $show_image_previews = "true" ];then
if [ -s "%s\\\\\\${title}.png" ]; then
if [ $show_image_previews = "true" ];then
if [ -s "%s\\\\\\${title}.png" ]; then
if command -v "chafa">/dev/null;then
chafa -s $dim "%s\\\\\\${title}.png"
else
echo please install chafa to enjoy image previews
fi
echo
else
echo
else
echo Loading...
fi
fi
@@ -380,7 +380,7 @@ def get_fzf_episode_preview(
title={}
%s
show_image_previews="%s"
if [ $show_image_previews = "true" ];then
if [ $show_image_previews = "true" ];then
if [ -s %s/${title}.png ]; then fzf-preview %s/${title}.png
else echo Loading...
fi
@@ -431,14 +431,14 @@ def get_fzf_anime_preview(
show_image_previews="%s"
dim=${FZF_PREVIEW_COLUMNS}x${FZF_PREVIEW_LINES}
if [ $show_image_previews = "true" ];then
if [ -s "%s\\\\\\${title}.png" ]; then
if [ -s "%s\\\\\\${title}.png" ]; then
if command -v "chafa">/dev/null;then
chafa -s $dim "%s\\\\\\${title}.png"
else
echo please install chafa to enjoy image previews
fi
echo
else
echo
else
echo Loading...
fi
fi

View File

@@ -5,7 +5,7 @@ import requests
def print_img(url: str):
"""helper funtion to print an image given its url
"""helper function to print an image given its url
Args:
url: [TODO:description]
@@ -25,7 +25,7 @@ def print_img(url: str):
return
img_bytes = res.content
"""
Change made in call to chafa. Chafa dev dropped abilty
Change made in call to chafa. Chafa dev dropped ability
to pull from urls. Keeping old line here just in case.
subprocess.run([EXECUTABLE, url, "--size=15x15"], input=img_bytes)

View File

@@ -92,7 +92,7 @@ def filter_by_quality(quality: str, stream_links: "list[EpisodeStream]", default
def format_bytes_to_human(num_of_bytes: float, suffix: str = "B"):
"""Helper function usedd to format bytes to human
"""Helper function used to format bytes to human
Args:
num_of_bytes: the number of bytes to format

View File

@@ -64,7 +64,7 @@ class AniListApi:
self.session = requests.session()
def login_user(self, token: str):
"""methosd used to login a new user enabling authenticated requests
"""method used to login a new user enabling authenticated requests
Args:
token: anilist app token
@@ -247,7 +247,7 @@ class AniListApi:
return (False, None)
except Exception as e:
logger.error(f"Something unexpected occured {e}")
logger.error(f"Something unexpected occurred {e}")
return (False, None) # type: ignore
def get_data(
@@ -311,7 +311,7 @@ class AniListApi:
},
) # type: ignore
except Exception as e:
logger.error(f"Something unexpected occured {e}")
logger.error(f"Something unexpected occurred {e}")
return (False, {"Error": f"{e}"}) # type: ignore
def search(
@@ -456,7 +456,7 @@ class AniListApi:
recommended_anime = self.get_data(recommended_query, variables)
return recommended_anime
def get_charcters_of(self, id: int, type="ANIME", *_, **kwargs):
def get_characters_of(self, id: int, type="ANIME", *_, **kwargs):
variables = {"id": id}
characters = self.get_data(anime_characters_query, variables)
return characters

View File

@@ -1,5 +1,5 @@
"""
This module contains all the preset queries for the sake of neatness and convinience
This module contains all the preset queries for the sake of neatness and convenience
Mostly for internal usage
"""
@@ -26,7 +26,7 @@ query($id:Int){
}
}
body
}
}
}
@@ -88,7 +88,7 @@ query{
large
medium
}
}
}
"""
@@ -909,7 +909,7 @@ query ($id: Int,$type:MediaType) {
airingAt
timeUntilAiring
episode
}
}
}

View File

@@ -246,7 +246,7 @@ def get_mal_id_and_anilist_id(anime_title: str) -> "dict[str,int] | None":
)
return {"id_anilist": anime["id"], "id_mal": anime["idMal"]}
except Exception as e:
logger.error(f"Something unexpected occured {e}")
logger.error(f"Something unexpected occurred {e}")
def get_basic_anime_info_by_title(anime_title: str):
@@ -320,4 +320,4 @@ def get_basic_anime_info_by_title(anime_title: str):
],
}
except Exception as e:
logger.error(f"Something unexpected occured {e}")
logger.error(f"Something unexpected occurred {e}")