Skip to content

Commit b8fe49b

Browse files
committed
Revert "First draft of visual novel PDM"
This reverts commit efb05fc.
1 parent efb05fc commit b8fe49b

3 files changed

Lines changed: 0 additions & 189 deletions

File tree

toolbox/datasets/visual_novels.py

Lines changed: 0 additions & 98 deletions
This file was deleted.

toolbox/modules/visual_novel_pdm.py

Lines changed: 0 additions & 84 deletions
This file was deleted.

toolbox/utils/strings.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,3 @@ def uppercase(string: str) -> str:
6161
return string
6262
else:
6363
return string[0].upper() + string[1:]
64-
65-
def is_first_and_last_char(line: str, char_to_find: str) -> bool:
66-
'''Detects whether a character is present as both the first and last character in a string'''
67-
if line.lstrip()[0] == char_to_find and line.rstrip[-1] == char_to_find:
68-
return True
69-
else:
70-
return False

0 commit comments

Comments
 (0)