camparchimedes commited on
Commit
555d347
·
verified ·
1 Parent(s): 103353a

Update api_docs_mck.py

Browse files
Files changed (1) hide show
  1. api_docs_mck.py +3 -3
api_docs_mck.py CHANGED
@@ -2,7 +2,7 @@
2
 
3
  import json
4
 
5
- daysoff_api_docs = {
6
  "base_url": "https://670dccd0073307b4ee447f2f.mockapi.io/daysoff/api/V1/booking",
7
  "endpoints": {
8
  "method": "GET",
@@ -31,7 +31,7 @@ daysoff_api_docs = {
31
  }
32
  }
33
 
34
- daysoff_api_docs_str = json.dumps(daysoff_api_docs, indent=2)
35
- daysoff_api_docs_str
36
 
37
 
 
2
 
3
  import json
4
 
5
+ api_docs = {
6
  "base_url": "https://670dccd0073307b4ee447f2f.mockapi.io/daysoff/api/V1/booking",
7
  "endpoints": {
8
  "method": "GET",
 
31
  }
32
  }
33
 
34
+ api_docs_str = json.dumps(api_docs, indent=2)
35
+ api_docs_str
36
 
37