Skip to content

Commit bec68e8

Browse files
committed
Tidy
1 parent 6370319 commit bec68e8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cpp/src/arrow/filesystem/azurefs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ struct ARROW_EXPORT AzureOptions {
136136
private:
137137
void ExtractFromUriSchemeAndHierPart(const Uri& uri, std::string* out_path);
138138
Status ExtractFromUriQuery(const Uri& uri);
139+
void ClearCredentials();
139140

140141
public:
141142
/// \brief Construct a new AzureOptions from an URI.
@@ -187,7 +188,6 @@ struct ARROW_EXPORT AzureOptions {
187188
static Result<AzureOptions> FromUri(const Uri& uri, std::string* out_path);
188189
static Result<AzureOptions> FromUri(const std::string& uri, std::string* out_path);
189190

190-
void ClearCredentials();
191191
Status ConfigureDefaultCredential();
192192
Status ConfigureAnonymousCredential();
193193
Status ConfigureAccountKeyCredential(const std::string& account_key);

python/pyarrow/tests/test_fs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -650,7 +650,7 @@ def loads(self, data):
650650
@pytest.fixture(params=[True, False])
651651
def pickle_with_and_without_subtree_filesystem(pickle_module, request):
652652
# When creating a SubTreeFileSystem, the python side object for the base
653-
# filesystem is lost. This makes it pickling a scenario worth testing.
653+
# filesystem is lost. This makes it a pickling scenario worth testing.
654654
wrap_with_subtree_filesystem = request.param
655655
if wrap_with_subtree_filesystem:
656656
return _PickleModuleSubTreeFileSystemWrapper(pickle_module)

0 commit comments

Comments
 (0)