File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change 20
20
21
21
# Write the list of supported sites to sites.md
22
22
with open ("output/sites.mdx" , "w" ) as site_file :
23
- site_file .write (f "---\n title: 'List of supported sites'\n sidebarTitle: 'Supported sites'\n icon: 'globe'\n description: 'Sherlock currently supports **400+** sites'\n ---\n \n " )
23
+ site_file .write ("---\n title: 'List of supported sites'\n sidebarTitle: 'Supported sites'\n icon: 'globe'\n description: 'Sherlock currently supports **400+** sites'\n ---\n \n " )
24
24
for social_network , info in social_networks :
25
25
url_main = info ["urlMain" ]
26
26
is_nsfw = "**(NSFW)**" if info .get ("isNSFW" ) else ""
Original file line number Diff line number Diff line change 11
11
import signal
12
12
import pandas as pd
13
13
import os
14
- import platform
15
14
import re
16
15
import sys
17
16
from argparse import ArgumentParser , RawDescriptionHelpFormatter
26
25
del __version__
27
26
28
27
from .__init__ import ( # noqa: E402
29
- __shortname__ ,
30
28
__longname__ ,
31
29
__version__
32
30
)
You can’t perform that action at this time.
0 commit comments