Skip to content

Commit 6caa135

Browse files
committed
ruff'd
1 parent 36a1cff commit 6caa135

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

irods_http_client/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@
1010
user_group_operations as user_group_operations,
1111
zone_operations as zone_operations,
1212
)
13-
from .irods_http_client import authenticate as authenticate, get_server_info as get_server_info
13+
from .irods_http_client import (
14+
authenticate as authenticate,
15+
get_server_info as get_server_info,
16+
)
1417

1518
__all__ = [
1619
"authenticate",

irods_http_client/irods_http_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
"""Main client module for iRODS HTTP API interactions."""
22

33
import logging
4+
45
import requests
5-
from typing import Any
66

77
from irods_http_client import common
88

0 commit comments

Comments
 (0)