python-tabulate icon indicating copy to clipboard operation
python-tabulate copied to clipboard

Bugfix in tables without linebetweenrows

Open helviojunior opened this issue 1 year ago • 0 comments

Before

╭───────┬──────────────────────────────────────────────╮
│       │ File: /tmp/teste.json                        │
├───────┼──────────────────────────────────────────────┤
│    1  │ {                                            │
│    2  │   "id":
"d35c4561-abb3-4fa5-8103-c0a88ca9eb50",                                              │
│    3  │   "name": "CCat Test",                       │
│    4  │   "values": [                                │
│    5  │     {                                        │
│    6  │       "key": "url",                          │
│    7  │       "value": "",                           │
│    8  │       "enabled": true                        │
│    9  │     }                                        │
│   10  │   ],                                         │
│   11  │   "_postman_variable_scope": "environment",  │
│   12  │   "_postman_exported_at":
"2019-10-24T12:33:17.368Z",                                              │
│   13  │   "_postman_exported_using": "Postman/7.9.0" │
│   14  │ }                                            │
╰───────┴──────────────────────────────────────────────╯

After

╭───────┬──────────────────────────────────────────────╮
│       │ File: /tmp/teste.json                        │
├───────┼──────────────────────────────────────────────┤
│    1  │ {                                            │
│    2  │   "id":                                      │
│       │ "d35c4561-abb3-4fa5-8103-c0a88ca9eb50",      │
│    3  │   "name": "CCat Test",                       │
│    4  │   "values": [                                │
│    5  │     {                                        │
│    6  │       "key": "url",                          │
│    7  │       "value": "",                           │
│    8  │       "enabled": true                        │
│    9  │     }                                        │
│   10  │   ],                                         │
│   11  │   "_postman_variable_scope": "environment",  │
│   12  │   "_postman_exported_at":                    │
│       │ "2019-10-24T12:33:17.368Z",                  │
│   13  │   "_postman_exported_using": "Postman/7.9.0" │
│   14  │ }                                            │
╰───────┴──────────────────────────────────────────────╯

helviojunior avatar Mar 10 '23 05:03 helviojunior