Skip to content

Commit 5967f44

Browse files
committed
Applies black formatting.
1 parent 28ff962 commit 5967f44

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

matlab_proxy/app_state.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -897,7 +897,13 @@ def create_server_info_file(self):
897897
mwi_server_info_file = mwi_logs_dir / "mwi_server.info"
898898
mwi_auth_token_str = token_auth.get_mwi_auth_token_access_str(self.settings)
899899
with open(mwi_server_info_file, "w", encoding="utf-8") as fh:
900-
fh.write(self.settings["mwi_server_url"] + mwi_auth_token_str + "\n" + self.settings["browser_title"] + "\n")
900+
fh.write(
901+
self.settings["mwi_server_url"]
902+
+ mwi_auth_token_str
903+
+ "\n"
904+
+ self.settings["browser_title"]
905+
+ "\n"
906+
)
901907
self.mwi_server_session_files["mwi_server_info_file"] = mwi_server_info_file
902908
logger.debug(f"Server info stored into: {mwi_server_info_file}")
903909

matlab_proxy/util/mwi/session_name.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
logger = mwi_logger.get()
99

10+
1011
def _get_session_name():
1112
"""Get the session name for the MATLAB Proxy instance.
1213

0 commit comments

Comments
 (0)