Skip to content

Commit

Permalink
Update _session.py
Browse files Browse the repository at this point in the history
Signed-off-by: Tim <[email protected]>
  • Loading branch information
TimMcCool authored Sep 5, 2022
1 parent e0ee24a commit 4649efd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scratchattach/_session.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,9 +238,9 @@ def delete_from_backpack(self, asset_id):
headers = self._headers,
).json()

def connect_cloud(self, project_id=None, *, project_id_kwarg=None):
def connect_cloud(self, project_id_arg=None, *, project_id=None):
if project_id is None:
project_id = project_id_kwarg
project_id = project_id_arg
if project_id is None:
return None

Expand Down

0 comments on commit 4649efd

Please sign in to comment.