From 724a8b0c962c98ffeabe5130f4487d9bd1f08d2f Mon Sep 17 00:00:00 2001 From: bwmac Date: Fri, 17 Jan 2025 13:32:38 -0500 Subject: [PATCH] pre-commit --- synapseclient/models/agent.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/synapseclient/models/agent.py b/synapseclient/models/agent.py index 1a9376276..d1ae8f9b4 100644 --- a/synapseclient/models/agent.py +++ b/synapseclient/models/agent.py @@ -204,9 +204,9 @@ class AgentSession(AgentSessionSynchronousProtocol): """The unique ID of the agent session. Can only be used by the user that created it.""" - access_level: Optional[AgentSessionAccessLevel] = ( - AgentSessionAccessLevel.PUBLICLY_ACCESSIBLE - ) + access_level: Optional[ + AgentSessionAccessLevel + ] = AgentSessionAccessLevel.PUBLICLY_ACCESSIBLE """The access level of the agent session. One of PUBLICLY_ACCESSIBLE, READ_YOUR_PRIVATE_DATA, or WRITE_YOUR_PRIVATE_DATA. Defaults to PUBLICLY_ACCESSIBLE.