Skip to content

Commit f1c9aa2

Browse files
committed
praying to the linter gods
1 parent f51c452 commit f1c9aa2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crawler.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
import json
44
import os
5-
from os.path import dirname, join
65
from base64 import b64decode
6+
from os.path import dirname, join
77

88
import github3
99
from dotenv import load_dotenv
@@ -22,7 +22,7 @@
2222
organization = os.getenv("ORGANIZATION")
2323

2424
# Get all repos from organization
25-
search_string = "org:" + organization + " topic:" + topic
25+
search_string = "org:{} topic:{}".format(organization, topic)
2626
all_repos = gh.search_repositories(search_string)
2727
repo_list = []
2828

0 commit comments

Comments
 (0)