Skip to content

Commit

Permalink
refactor: Refactor code for improved readability and maintainability
Browse files Browse the repository at this point in the history
  • Loading branch information
rikvik2006 authored and pemtajo committed Sep 7, 2023
1 parent 6710713 commit 8f04329
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
CREDLY_USER = os.getenv("INPUT_CREDLY_USER")
CREDLY_SORT = os.getenv("INPUT_CREDLY_SORT")

BADGE_SIZE = os.getenv("INPUT_BADGE_SIZE", '110')
BADGE_SIZE = os.getenv("INPUT_BADGE_SIZE", "110")
try:
NUMBER_LAST_BADGES = int(os.getenv("INPUT_NUMBER_LAST_BADGES"))
except:
NUMBER_LAST_BADGES = 0

CREDLY_BASE_URL= "http://www.credly.com"
CREDLY_BASE_URL = "http://www.credly.com"

LIST_REGEX = f"{START_COMMENT}[\\s\\S]+{END_COMMENT}"

0 comments on commit 8f04329

Please sign in to comment.