You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/options/options.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -69,6 +69,14 @@ indicators = false
69
69
handler = false
70
70
```
71
71
72
+
The configuration file is loaded when `itables` is imported - you will need to restart Python and re-import ITables to get the latest configuration.
73
+
74
+
You can confirm which configuration file is being used (in a given directory) by running
75
+
```
76
+
python -m itables.show_config
77
+
```
78
+
79
+
72
80
## Option Names and Type Checks
73
81
74
82
Option names and types are checked by default at runtime when `typeguard>=4.4.1` is installed. You can disable this by setting `warn_on_undocumented_option=False`.
Copy file name to clipboardExpand all lines: docs/py/options/options.py
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -71,6 +71,14 @@
71
71
# handler = false
72
72
# ```
73
73
#
74
+
# The configuration file is loaded when `itables` is imported - you will need to restart Python and re-import ITables to get the latest configuration.
75
+
#
76
+
# You can confirm which configuration file is being used (in a given directory) by running
77
+
# ```
78
+
# python -m itables.show_config
79
+
# ```
80
+
#
81
+
#
74
82
# ## Option Names and Type Checks
75
83
#
76
84
# Option names and types are checked by default at runtime when `typeguard>=4.4.1` is installed. You can disable this by setting `warn_on_undocumented_option=False`.
0 commit comments