Skip to content

Commit

Permalink
fix: pylint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
kreczko committed Dec 6, 2023
1 parent 0923333 commit 184212f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/xrdsum/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@

APP_LOGGER_NAME = "xrdsum"

__all__ = [APP_LOGGER_NAME, get_logger, TIMING, TRACE]
__all__ = ["APP_LOGGER_NAME", "get_logger", "TIMING", "TRACE"]
3 changes: 2 additions & 1 deletion src/xrdsum/storage_catalog/cms.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@
from __future__ import annotations

import re
from dataclasses import field
from dataclasses import dataclass, field
from xml.dom.minidom import parse as parse_xml

from ._base import StorageCatalog


@dataclass
class CMSStorageCatalog(StorageCatalog):
"""CMS file catalog lookup"""

Expand Down

0 comments on commit 184212f

Please sign in to comment.