Skip to content

Commit

Permalink
Added comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhild1836 authored Dec 27, 2024
1 parent 2895316 commit 074e816
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CardSharp/CardSharp.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ def __init__(self, sn, uneg=False):
# or a string with valid characters convertible to integer? (leading negative sign okay)
try:
if type(sn) is SN:
self.sn = sn.sn # ******
self.sn = sn.sn
self.uneg = sn.uneg
self.facets = None
self.facets = None # dictionary holding facets if a macro with facets
elif type(sn) is str:
# Don't check by casting to float, we don't want 1. (one dot)
pcs = sn.split('.')
Expand Down

0 comments on commit 074e816

Please sign in to comment.