Skip to content

Commit

Permalink
ci(chore): Fix stylings
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Mar 15, 2023
1 parent 1c6552c commit b461f35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/global.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ func GenIMEI() string {
for i := 0; i < 14; i++ { // generating all the base digits
toAdd := randGen.Intn(10)
fmt.Fprintf(&final, "%d", toAdd) // printing them here!
if (i+1)%2 == 0 { // special proc for every 2nd one
if (i+1)%2 == 0 { // special proc for every 2nd one
toAdd *= 2
if toAdd >= 10 {
toAdd = (toAdd % 10) + 1
Expand Down

0 comments on commit b461f35

Please sign in to comment.