Skip to content

Commit 6ef51e2

Browse files
Merge pull request #1 from nikochaffin/master
『 add brackets 』 福原 礼文
2 parents cdcffcc + 883dccb commit 6ef51e2

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22

33
A python module for making your outputs have aesthetique.
44

5-
## Installation
5+
## Installation
66

77
$ pip install pyaesthetique
88

9-
## Usage
9+
## Usage
1010

1111
```python
1212
from aesthetique import Aesthetique
1313
a = Aesthetique()
1414
a.translate("python module for adding aesthetic to your outputs")
15-
'python module for adding aesthetic to your outputs 湯浅 倫太郎'
15+
'python module for adding aesthetic to your outputs 湯浅 倫太郎'
1616
```
1717

1818
Adds aesthetic to your string, and then sprinkls some Japanese kanji that doesn't make any sense just for fun.

aesthetique/aesthetique.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from gimini import Gimei
22

33
class Aesthetique:
4-
4+
55
def __init__(self):
66
pass
77

@@ -12,5 +12,5 @@ def translate(self, input):
1212
widemap = dict((ord(x[0]), x[1]) for x in zip(normal, wide))
1313
wide_output = input.translate(widemap)
1414
name_output = Gimei().name.kanji
15-
output = '{0} {1}'.format(wide_output, name_output)
15+
output = '{0} {1}'.format(wide_output, name_output)
1616
return output

0 commit comments

Comments
 (0)