Skip to content

Commit 8883b5c

Browse files
Add CI badge to README and reformat a log statement
Added a formatting check badge to the README for better project visibility regarding CI status. Reformatted a long log statement in `PracticeFactory.py` for improved readability and adherence to line length guidelines.
1 parent 1f00abe commit 8883b5c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

PracticeFactory.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@ def handle(self, args):
5555
log(f"📅 Date: {daily_challenge['date']}", LogLevel.INFO)
5656
log(f"📖 Title: {daily_challenge['question']['title']}", LogLevel.INFO)
5757
log(f"✨ Difficulty: {difficulty_label}", LogLevel.INFO)
58-
log(f"🔗 Link: https://leetcode.com{daily_challenge['link']}", LogLevel.INFO)
58+
log(
59+
f"🔗 Link: https://leetcode.com{daily_challenge['link']}", LogLevel.INFO
60+
)
5961

6062
if args["open_in_browser"]:
6163
import webbrowser

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 🦑 SquidLeet
1+
# 🦑 SquidLeet [![Format Check](https://github.com/daily-coding-problem/squidleet/actions/workflows/format-check.yml/badge.svg)](https://github.com/daily-coding-problem/squidleet/actions/workflows/format-check.yml)
22

33
![Python](https://img.shields.io/badge/-Python-3776AB?style=flat-square&logo=python&logoColor=white)
44
![Pytest](https://img.shields.io/badge/-Pytest-0A9EDC?style=flat-square&logo=pytest&logoColor=white)

0 commit comments

Comments
 (0)