Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
CodingPoeta committed Jan 8, 2025
1 parent 7add05c commit 29c86cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/python/juicefs/juicefs/juicefs.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def __init__(self):

def __getattr__(self, n):
fn = getattr(self.lib, n)
if n.equals("jfs_init") or n.equals("jfs_lseek"):
if n == "jfs_init" or n == "jfs_lseek":
fn.restype = c_int64
fn.errcheck = check_error
elif n.startswith("jfs"):
Expand Down

0 comments on commit 29c86cb

Please sign in to comment.