Skip to content

Commit 02c522f

Browse files
committed
chore: run black formatter
1 parent 0c5ec5b commit 02c522f

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

podman/errors/exceptions.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
"""Podman API Errors."""
22

3-
<<<<<<< HEAD
4-
from typing import List, Dict, Optional, Union, TYPE_CHECKING
5-
=======
63
from typing import Optional, Union, TYPE_CHECKING
7-
>>>>>>> fa8eb3e (Fix Code based on ruff 0.3->0.8.1)
84
from collections.abc import Iterable
95

106
from requests import Response
@@ -205,7 +201,6 @@ def __str__(self) -> str:
205201

206202

207203
class StreamParseError(RuntimeError):
208-
<<<<<<< HEAD
209204
"""Exception raised when parsing a stream fails."""
210205

211206
def __init__(self, reason: str):
@@ -215,7 +210,4 @@ def __init__(self, reason: str):
215210
reason: Description of the parsing error.
216211
"""
217212
super().__init__(reason)
218-
=======
219-
def __init__(self, reason):
220-
>>>>>>> b8f28e2 (Implement "decode" parameter in pull())
221213
self.msg = reason

0 commit comments

Comments
 (0)