File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 2193
2193
"regexCheck" : " ^[a-zA-Z0-9_]{1,15}$" ,
2194
2194
"url" : " https://x.com/{}" ,
2195
2195
"urlMain" : " https://x.com/" ,
2196
- "urlProbe" : " https://nitter.privacydev.net/{}" ,
2197
2196
"username_claimed" : " blue"
2198
2197
},
2199
2198
"Typeracer" : {
Original file line number Diff line number Diff line change @@ -829,7 +829,11 @@ def main():
829
829
# Eventually, the rest of the code will be updated to use the new object
830
830
# directly, but this will glue the two pieces together.
831
831
site_data_all = {site .name : site .information for site in sites }
832
- if not args .site_list :
832
+ # Create original dictionary from SitesInformation() object.
833
+ # Eventually, the rest of the code will be updated to use the new object
834
+ # directly, but this will glue the two pieces together.
835
+ site_data_all = {site .name : site .information for site in sites }
836
+ if args .site_list == []:
833
837
# Not desired to look at a sub-set of sites
834
838
site_data = site_data_all
835
839
else :
You can’t perform that action at this time.
0 commit comments