mirror of
https://github.com/sotam0316/docker-py-revanced.git
synced 2026-04-25 03:48:37 +09:00
🎨 Updated variable name
This commit is contained in:
+6
-6
@@ -52,21 +52,21 @@ def handle_github_response(response: Response) -> None:
|
|||||||
def slugify(string: str) -> str:
|
def slugify(string: str) -> str:
|
||||||
"""Converts a string to a slug format."""
|
"""Converts a string to a slug format."""
|
||||||
# Convert to lowercase
|
# Convert to lowercase
|
||||||
string = string.lower()
|
modified_string = string.lower()
|
||||||
|
|
||||||
# Remove special characters
|
# Remove special characters
|
||||||
string = re.sub(r"[^\w\s-]", "", string)
|
modified_string = re.sub(r"[^\w\s-]", "", modified_string)
|
||||||
|
|
||||||
# Replace spaces with dashes
|
# Replace spaces with dashes
|
||||||
string = re.sub(r"\s+", "-", string)
|
modified_string = re.sub(r"\s+", "-", modified_string)
|
||||||
|
|
||||||
# Remove consecutive dashes
|
# Remove consecutive dashes
|
||||||
string = re.sub(r"-+", "-", string)
|
modified_string = re.sub(r"-+", "-", modified_string)
|
||||||
|
|
||||||
# Remove leading and trailing dashes
|
# Remove leading and trailing dashes
|
||||||
string = string.strip("-")
|
modified_string = modified_string.strip("-")
|
||||||
|
|
||||||
return string
|
return modified_string
|
||||||
|
|
||||||
|
|
||||||
def check_java(dry_run: bool) -> None:
|
def check_java(dry_run: bool) -> None:
|
||||||
|
|||||||
Reference in New Issue
Block a user