File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " socketify"
7- version = " 0.0.29 "
7+ version = " 0.0.30 "
88dynamic = [" dependencies" ]
99authors = [
1010 { name =" Ciro Spaciari" , email =" ciro.spaciari@gmail.com" },
Original file line number Diff line number Diff line change 5858
5959setuptools .setup (
6060 name = "socketify" ,
61- version = "0.0.29 " ,
61+ version = "0.0.30 " ,
6262 platforms = ["any" ],
6363 author = "Ciro Spaciari" ,
6464 author_email = "ciro.spaciari@gmail.com" ,
Original file line number Diff line number Diff line change @@ -573,8 +573,8 @@ def __init__(
573573 self .server = App (options , task_factory_max_items = 0 )
574574 self .SERVER_PORT = None
575575 self .SERVER_HOST = ""
576- self .SERVER_SCHEME = "https" if self . server . options and self . server . options .cert_file_name is not None else "http"
577- self .SERVER_WS_SCHEME = "wss" if self . server . options and self . server . options .cert_file_name is not None else "ws"
576+ self .SERVER_SCHEME = "https" if options and options .cert_file_name is not None else "http"
577+ self .SERVER_WS_SCHEME = "wss" if options and options .cert_file_name is not None else "ws"
578578 self .task_factory_max_items = task_factory_max_items
579579 self .lifespan = lifespan
580580
You can’t perform that action at this time.
0 commit comments