Skip to content

Commit a106da2

Browse files
Add disable_auth_warning flag.
1 parent 4b7f69a commit a106da2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tabpy/tabpy_server/app/app.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ class TabPyApp:
6767
arrow_server = None
6868
max_request_size = None
6969

70-
def __init__(self, config_file):
70+
def __init__(self, config_file, disable_auth_warning=True):
71+
self.disable_auth_warning = disable_auth_warning
7172
if config_file is None:
7273
config_file = os.path.join(
7374
os.path.dirname(__file__), os.path.pardir, "common", "default.conf"

0 commit comments

Comments
 (0)