Skip to content

Commit 384bce9

Browse files
committed
[RELEASE] v1.0.2
1 parent 37262ff commit 384bce9

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ print(b.korTranslate("안녕하세요. 점자 번역 패키지입니다."))
2222
### print 결과
2323

2424
```python
25-
⠣⠒⠉⠻⠚⠠⠝⠬⠲⠀⠨⠎⠢⠨⠀⠘⠾⠱⠁⠀⠙⠗⠋⠕⠨⠕⠕⠃⠉⠕⠊⠲⠀
25+
⠣⠒⠉⠻⠚⠠⠝⠬⠲⠀⠨⠎⠢⠨⠀⠘⠾⠱⠁⠀⠙⠗⠋⠕⠨⠕⠕⠃⠉⠕⠊⠲⠀
2626
```

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "KorToBraille"
7-
version = "1.0.0"
7+
version = "1.0.2"
88
authors = [
99
{name="Yujin Yang", email="[email protected]"},
1010
{name="Nayeon Kim", email="[email protected]" },

src/KorToBraille/KorToBraille.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,8 @@ def getBrailleFromJamo(self, n):
8383
# 제2항: ‘ᄋ’이 첫소리 자리에 쓰일 때에는 이를 표기하지 않는다.
8484
if cho == "ㅇ":
8585
cho = ""
86+
else:
87+
self.flag_17 = False
8688

8789
braille_cho = kor_cho[cho] # 초성 점자
8890
# 중성
@@ -324,6 +326,7 @@ def korTranslate(self, input: str):
324326

325327
return result
326328

329+
327330
# if __name__ == '__main__':
328-
# b = KorToBraille().korTranslate("2019년 11월 4일 제93회 점자의 날을 기념하여 점자 번역기 '점자로'를 공개합니다. 별도의 프로그램 설치 없이 웹 페이지에서 바로 사용할 수 있습니다.")
331+
# b = KorToBraille().korTranslate("안녕하세요. 점자 번역 패키지입니다.")
329332
# print(b)

0 commit comments

Comments
 (0)