CognitiveScience commited on
Commit
b3fe066
·
1 Parent(s): 7748c56

Update ccogsphere.py

Browse files
Files changed (1) hide show
  1. ccogsphere.py +4 -2
ccogsphere.py CHANGED
@@ -8,8 +8,10 @@ def ccs(inp):
8
  soup = BeautifulSoup(response.text, "html.parser")
9
  result=response.text[response.text.find("viewCount"):].split('"')[2]
10
  else:
11
- if(inp1!="End"):
12
- result+=inp1 + " Picked " + inp.split(":")[1] +"\n"
 
 
13
 
14
 
15
 
 
8
  soup = BeautifulSoup(response.text, "html.parser")
9
  result=response.text[response.text.find("viewCount"):].split('"')[2]
10
  else:
11
+ if(inp1=="End"):
12
+ result=result + inp1
13
+ else:
14
+ result+=inp1 + " Picked " + inp.split(":")[1] +"\n"
15
 
16
 
17