Skip to content

Commit 80003e4

Browse files
committed
Backend 🔚
1 parent 1665b90 commit 80003e4

6 files changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/backend_code_checker.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ on:
66
- backend/**
77
name: Backend Projects
88
jobs:
9-
TaskTracker:
10-
name: TaskTracker Code Checker
9+
tasktracker:
10+
name: tasktracker Code Checker
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v1
1414
- uses: ricardochaves/python-lint@master
1515
with:
16-
python-root-list: "backend/TaskTracker"
16+
python-root-list: "backend/tasktracker"
1717
- name: Send Message
1818
if: always()
1919
uses: appleboy/telegram-action@master

backend/githubuseractivity/github_user_activity.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ def get_user_activity(username):
3939
return
4040

4141
for activity in user_activity:
42-
print(f"{activity["type"]} {activity["repo"]["name"]}")
42+
type = activity["type"]
43+
repo_name = activity["repo"]["name"]
44+
print(f"{type} {repo_name}")
4345

4446
if __name__ == '__main__':
4547
username = check_input()
File renamed without changes.

0 commit comments

Comments
 (0)