Skip to content

Commit

Permalink
Merge pull request #84 from kookmin-sw/data
Browse files Browse the repository at this point in the history
Data
  • Loading branch information
young43 authored May 19, 2023
2 parents 88a0c26 + 4796d54 commit 836a538
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DM/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ def getCompanion():
# 혼성으로 설정했으면 제외
include_index = list()
for idx in companion_index[1:]:
if user_data_gender[user_index][0] == '혼성':
if user_data_gender[user_index][0] == '혼성' or len(user_data_gender[user_index][0]) == 0:
if user_data_gender[idx][0] == '혼성':
include_index.append(idx)
elif user_data_gender[user_index][1] == user_data_gender[idx][1]: # 성이 같을때만
Expand Down

0 comments on commit 836a538

Please sign in to comment.