Skip to content

Commit

Permalink
fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
pauldg committed Oct 17, 2024
1 parent 72547e0 commit 2a54556
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/galaxy/objectstore/irods.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Object Store plugin for the Integrated Rule-Oriented Data System (iRODS)
"""

import json
import logging
import os
import shutil
Expand Down Expand Up @@ -42,7 +41,7 @@ def _config_xml_error(tag):


def _config_dict_error(key):
msg = "No {key} key in config dictionary".format(key=key)
msg = f"No {key} key in config dictionary"
raise Exception(msg)


Expand Down

0 comments on commit 2a54556

Please sign in to comment.