Skip to content

Commit

Permalink
Testing: Add type annotations to api/exporter; rucio#6588
Browse files Browse the repository at this point in the history
  • Loading branch information
rdimaio committed Apr 26, 2024
1 parent 2c389be commit 206fe31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/rucio/gateway/exporter.py
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from typing import TYPE_CHECKING
from typing import TYPE_CHECKING, Any

from rucio.common import exception
from rucio.core import exporter
Expand All @@ -25,7 +25,7 @@


@read_session
def export_data(issuer, distance=True, vo='def', *, session: "Session"):
def export_data(issuer: str, distance: bool = True, vo: str = 'def', *, session: "Session") -> dict[str, Any]:
"""
Export data from Rucio.
Expand Down

0 comments on commit 206fe31

Please sign in to comment.