Skip to content

Commit 1e581c5

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 8b1023e commit 1e581c5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/pushsource/_impl/backend/errata_source/errata_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import subprocess
66
import tempfile
77
import threading
8-
import xmlrpc.client as xmlrpc_client #nosec B411
8+
import xmlrpc.client as xmlrpc_client # nosec B411
99
from urllib.parse import urljoin
1010
import warnings
1111

src/pushsource/_impl/compat_attr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Wrappers for attr module to deal with some incompatibilities between versions
55

66

7-
ATTR_VERSION = tuple(int(x) for x in (version('attrs')).split(".")[0:2])
7+
ATTR_VERSION = tuple(int(x) for x in (version("attrs")).split(".")[0:2])
88

99

1010
def s():

tests/errata/fake_errata_tool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from mock import Mock
44
import yaml
55
import json
6-
from xmlrpc.client import Fault #nosec B411
6+
from xmlrpc.client import Fault # nosec B411
77

88
import requests
99

0 commit comments

Comments
 (0)