Skip to content

Commit

Permalink
Merge pull request #139 from KOSASIH/deepsource-transform-4e093163
Browse files Browse the repository at this point in the history
style: format code with Autopep8, Black, ClangFormat, dotnet-format, Go fmt, Gofumpt, Google Java Format, isort, Ktlint, PHP CS Fixer, Prettier, RuboCop, Ruff Formatter, Rustfmt, Scalafmt, StandardJS, StandardRB, swift-format and Yapf
  • Loading branch information
KOSASIH authored May 11, 2024
2 parents be8b0dd + 2cfaf6b commit c1bb5af
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions core/virtual_credit_cards/vc_generator.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
import random


def generate_vc_number():
# Generate a new virtual credit card number
# ...
return '1234-5678-9012-3456'
# Generate a new virtual credit card number
# ...
return "1234-5678-9012-3456"


def revoke_vc_number(vc_number):
# Revoke a virtual credit card number
# ...
return True
# Revoke a virtual credit card number
# ...
return True

0 comments on commit c1bb5af

Please sign in to comment.