Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
yugioh-ccb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MyCard
yugioh-ccb
Commits
939424a8
Commit
939424a8
authored
May 05, 2025
by
EN1AK
Committed by
GitHub
May 05, 2025
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add files via upload
parent
398d2925
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
data_utils.py
data_utils.py
+1
-2
No files found.
data_utils.py
View file @
939424a8
...
...
@@ -137,10 +137,9 @@ def compare_tags(guess_tags, answer_tags):
if
(
val1
==
""
or
val1
is
None
)
and
(
val2
==
""
or
val2
is
None
):
return
'<span class="tag tag-gray">—</span>'
if
(
val1
==
""
or
val1
is
None
)
and
(
val2
!=
""
or
val2
is
not
None
):
num
=
val1
return
'<span class="tag tag-gray">—</span>'
if
(
val1
!=
""
or
val1
is
not
None
)
and
(
val2
==
""
or
val2
is
None
):
num
=
val
2
num
=
val
1
return
f
'<span class="tag tag-gray">{num}</span>'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment