Skip to content

Commit

Permalink
fix: update
Browse files Browse the repository at this point in the history
  • Loading branch information
Ihor-Pryyma committed Jul 22, 2024
1 parent 0e9935e commit 2e06ca3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions common/mount.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,18 +104,18 @@ def postUmountCheck(self):
return True
"""
import getpass
import json
import os
import subprocess
import json
import getpass
from zlib import crc32
from time import sleep
from zlib import crc32

import config
import logger
import tools
import password
from exceptions import MountException, HashCollision
import tools
from exceptions import HashCollision, MountException


class Mount(object):
Expand Down Expand Up @@ -144,7 +144,7 @@ def __init__(self,
tmp_mount = False,
parent = None):
self.config = cfg or config.Config()
self.profile_id = profile_id if profile_id is not None else self.config.currentProfile()
self.profile_id = profile_id or self.config.currentProfile()
self.tmp_mount = tmp_mount
self.parent = parent

Expand Down

0 comments on commit 2e06ca3

Please sign in to comment.