We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb274ba commit 0abf1ceCopy full SHA for 0abf1ce
libioc/JailState.py
@@ -35,7 +35,7 @@
35
36
37
def _get_userland_version() -> float:
38
- return float(libioc.helpers.get_os_version()["userland"])
+ return float(libioc.helpers.get_os_version()["userland"])
39
40
41
def _parse(text: str) -> JailStatesDict:
libioc/ListableResource.py
@@ -99,8 +99,8 @@ def __iter__(
99
for child_dataset in children:
100
name = self._get_asset_name_from_dataset(child_dataset)
101
if has_filters and (filters.match_key("name", name) is False):
102
- # Skip all jails that do not even match the name
103
- continue
+ # Skip all jails that do not even match the name
+ continue
104
105
# ToDo: Do not load jail if filters do not require to
106
resource = self._get_resource_from_dataset(child_dataset)
0 commit comments