Skip to content

Commit 36ebbfc

Browse files
committed
removing mode as using default
1 parent 8ae3058 commit 36ebbfc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/blueapi/service/authentication.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def can_access_cache(self) -> bool:
8484
return True
8585

8686
def _create_parent_folder_if_necessary(self):
87-
Path(self._token_path.parent).mkdir(mode=0o777, parents=True, exist_ok=True)
87+
Path(self._token_path.parent).mkdir(parents=True, exist_ok=True)
8888

8989

9090
class SessionManager:

0 commit comments

Comments
 (0)