@@ -537,7 +537,7 @@ class JupyterServerStopApp(JupyterApp):
537
537
help = "Port of the server to be killed. Default %s" % DEFAULT_JUPYTER_SERVER_PORT ,
538
538
)
539
539
540
- sock = Unicode (u "" , config = True , help = "UNIX socket of the server to be killed." )
540
+ sock = Unicode ("" , config = True , help = "UNIX socket of the server to be killed." )
541
541
542
542
def parse_command_line (self , argv = None ):
543
543
super (JupyterServerStopApp , self ).parse_command_line (argv )
@@ -768,7 +768,9 @@ def _default_log_level(self):
768
768
@default ("log_format" )
769
769
def _default_log_format (self ):
770
770
"""override default log format to include date & time"""
771
- return u"%(color)s[%(levelname)1.1s %(asctime)s.%(msecs).03d %(name)s]%(end_color)s %(message)s"
771
+ return (
772
+ "%(color)s[%(levelname)1.1s %(asctime)s.%(msecs).03d %(name)s]%(end_color)s %(message)s"
773
+ )
772
774
773
775
# file to be opened in the Jupyter server
774
776
file_to_run = Unicode ("" , help = "Open the named file when the application is launched." ).tag (
@@ -847,12 +849,12 @@ def _default_ip(self):
847
849
@validate ("ip" )
848
850
def _validate_ip (self , proposal ):
849
851
value = proposal ["value" ]
850
- if value == u "*" :
851
- value = u ""
852
+ if value == "*" :
853
+ value = ""
852
854
return value
853
855
854
856
custom_display_url = Unicode (
855
- u "" ,
857
+ "" ,
856
858
config = True ,
857
859
help = _i18n (
858
860
"""Override URL shown to users.
@@ -894,7 +896,7 @@ def port_default(self):
894
896
def port_retries_default (self ):
895
897
return int (os .getenv (self .port_retries_env , self .port_retries_default_value ))
896
898
897
- sock = Unicode (u "" , config = True , help = "The UNIX socket the Jupyter server will listen on." )
899
+ sock = Unicode ("" , config = True , help = "The UNIX socket the Jupyter server will listen on." )
898
900
899
901
sock_mode = Unicode (
900
902
"0600" , config = True , help = "The permissions mode for UNIX socket creation (default: 0600)."
@@ -911,7 +913,7 @@ def _validate_sock_mode(self, proposal):
911
913
bool (converted_value & stat .S_IRUSR ),
912
914
bool (converted_value & stat .S_IWUSR ),
913
915
# And isn't out of bounds.
914
- converted_value <= 2 ** 12 ,
916
+ converted_value <= 2 ** 12 ,
915
917
)
916
918
)
917
919
except ValueError :
@@ -923,17 +925,17 @@ def _validate_sock_mode(self, proposal):
923
925
return value
924
926
925
927
certfile = Unicode (
926
- u "" , config = True , help = _i18n ("""The full path to an SSL/TLS certificate file.""" )
928
+ "" , config = True , help = _i18n ("""The full path to an SSL/TLS certificate file.""" )
927
929
)
928
930
929
931
keyfile = Unicode (
930
- u "" ,
932
+ "" ,
931
933
config = True ,
932
934
help = _i18n ("""The full path to a private key file for usage with SSL/TLS.""" ),
933
935
)
934
936
935
937
client_ca = Unicode (
936
- u "" ,
938
+ "" ,
937
939
config = True ,
938
940
help = _i18n (
939
941
"""The full path to a certificate authority certificate for SSL/TLS client authentication."""
@@ -1013,7 +1015,7 @@ def _token_default(self):
1013
1015
if self .password :
1014
1016
# no token if password is enabled
1015
1017
self ._token_generated = False
1016
- return u ""
1018
+ return ""
1017
1019
else :
1018
1020
self ._token_generated = True
1019
1021
return binascii .hexlify (os .urandom (24 )).decode ("ascii" )
@@ -1074,7 +1076,7 @@ def _token_changed(self, change):
1074
1076
self ._token_generated = False
1075
1077
1076
1078
password = Unicode (
1077
- u "" ,
1079
+ "" ,
1078
1080
config = True ,
1079
1081
help = """Hashed password to use for web authentication.
1080
1082
@@ -1219,7 +1221,7 @@ def _default_allow_remote(self):
1219
1221
)
1220
1222
1221
1223
browser = Unicode (
1222
- u "" ,
1224
+ "" ,
1223
1225
config = True ,
1224
1226
help = """Specify what command to use to invoke a web
1225
1227
browser when starting the server. If not specified, the
0 commit comments