Skip to content

Commit

Permalink
Remove unnecessary import from debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffmeisterJ committed May 1, 2024
1 parent 8b78aa6 commit 92b55c4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions mtkclient/Library/Filesystem/mtkdafs.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
from time import time
import mmap
import errno
import debugpy
from tempfile import NamedTemporaryFile

class MtkDaFS(LoggingMixIn, Operations):
Expand Down Expand Up @@ -76,4 +75,4 @@ def write(self, path, data, offset, fh):
def getattr(self, path, fh=None):
if not self.rw:
self.files[path]['st_mode'] &= ~0o222
return self.files[path]
return self.files[path]

0 comments on commit 92b55c4

Please sign in to comment.