Skip to content
This repository was archived by the owner on Mar 31, 2020. It is now read-only.

Commit d0c7e44

Browse files
committed
Switched name and age in bio
1 parent 2aa021b commit d0c7e44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/front.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ def init(self):
101101
def __build_info(self, info: dict):
102102
item = widget.PrimaryFrame(self)
103103
info = [
104-
f"Age: {info['age']}",
105104
info['gender'].capitalize(),
105+
f"Age: {info['age']}",
106106
f'{"She" if info["gender"].startswith("f") else "He"} is {info["location"]}.'
107107
]
108108
for val in info:

0 commit comments

Comments
 (0)