Skip to content

Commit

Permalink
whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
d-w-moore committed Nov 21, 2023
1 parent 5731d4d commit 237e96c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions irods/manager/data_object_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ def open(self, path, mode,
returned_values = None, # Used to update session reference, for forging more conns to same host, in irods.parallel.io_main
allow_redirect = True, # This may be set to False to disallow the client redirect-to-resource.
**options):
_buffering = options.pop('_buffering',-1)
_buffering = options.pop('_buffering', -1)
_raw_fd_holder = options.get('_raw_fd_holder',[])
# If no keywords are used that would influence the server as to the choice of a storage resource,
# then use the default resource in the client configuration.
Expand Down Expand Up @@ -442,7 +442,7 @@ def make_FileOpenRequest(**extra_opts):
if auto_close:
return ManagedBufferedRandom(raw, _session = self.sess, **bufopt)

return io.BufferedRandom(raw,**bufopt)
return io.BufferedRandom(raw, **bufopt)

def trim(self, path, **options):

Expand Down

0 comments on commit 237e96c

Please sign in to comment.