Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkerl committed Oct 6, 2024
1 parent 61ce7cd commit e11d515
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions apis/python/src/tiledbsoma/_dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,8 @@ def resize_soma_joinid_shape(
"""
if check_only:
return cast(
Tuple[bool, str], self._handle._handle.can_resize_soma_joinid_shape(newshape)
Tuple[bool, str],
self._handle._handle.can_resize_soma_joinid_shape(newshape),
)
else:
self._handle._handle.resize_soma_joinid_shape(newshape)
Expand All @@ -443,7 +444,8 @@ def upgrade_soma_joinid_shape(
"""XXX TO WRITE"""
if check_only:
return cast(
Tuple[bool, str], self._handle._handle.can_upgrade_soma_joinid_shape(newshape)
Tuple[bool, str],
self._handle._handle.can_upgrade_soma_joinid_shape(newshape),
)
else:
self._handle._handle.upgrade_soma_joinid_shape(newshape)
Expand Down
2 changes: 1 addition & 1 deletion libtiledbsoma/src/soma/soma_array.cc
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@
* This file defines the SOMAArray class.
*/

#include "soma_array.h"
#include <tiledb/array_experimental.h>
#include "../utils/logger.h"
#include "../utils/util.h"
#include "soma_array.h"
namespace tiledbsoma {
using namespace tiledb;

Expand Down

0 comments on commit e11d515

Please sign in to comment.