silvanocerza commited on
Commit
6b3c370
1 Parent(s): 0673283

Better names for documentations

Browse files
Files changed (1) hide show
  1. main.py +7 -7
main.py CHANGED
@@ -24,16 +24,16 @@ load_dotenv()
24
 
25
  # This is the list of documentation that we're going to fetch
26
  DOCUMENTATIONS = [
27
- ("docarray", "https://github.com/docarray/docarray.git", "./docs/**/*.md"),
28
- ("streamlit", "https://github.com/streamlit/docs.git", "./content/**/*.md"),
29
- ("jinja", "https://github.com/pallets/jinja.git", "./docs/**/*.rst"),
30
- ("pandas", "https://github.com/pandas-dev/pandas.git", "./docs/source/**/*.rst"),
31
  (
32
- "elasticsearch",
33
- "https://github.com/elastic/elasticsearch.git",
34
  "./docs/**/*.asciidoc",
35
  ),
36
- ("numpy", "https://github.com/numpy/numpy.git", "./doc/**/*.rst"),
37
  ]
38
 
39
 
 
24
 
25
  # This is the list of documentation that we're going to fetch
26
  DOCUMENTATIONS = [
27
+ ("DocArray", "https://github.com/docarray/docarray", "./docs/**/*.md"),
28
+ ("Streamlit", "https://github.com/streamlit/docs", "./content/**/*.md"),
29
+ ("Jinja", "https://github.com/pallets/jinja", "./docs/**/*.rst"),
30
+ ("Pandas", "https://github.com/pandas-dev/pandas", "./docs/source/**/*.rst"),
31
  (
32
+ "Elasticsearch",
33
+ "https://github.com/elastic/elasticsearch",
34
  "./docs/**/*.asciidoc",
35
  ),
36
+ ("NumPy", "https://github.com/numpy/numpy", "./doc/**/*.rst"),
37
  ]
38
 
39