Skip to content

Commit 211e4dd

Browse files
committed
[ops] Match my modern syntax
1 parent f477438 commit 211e4dd

File tree

5 files changed

+5
-1
lines changed

5 files changed

+5
-1
lines changed

src/xpp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Copyright 2022-2024 iiPython
22

3-
__version__ = "3.1.2"
3+
__version__ = "3.1.3"
44

55
from .extra.config import config # noqa
66
from .core.sections import load_sections # noqa

src/xpp/modules/ops/stdlib/math.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
from typing import List
66
from random import randint
77
from types import FunctionType
8+
89
from xpp.core.datastore import Datastore
910
from xpp.modules.ops.shared import (
1011
fetch_io_args, InvalidArgument

src/xpp/modules/ops/stdlib/objects.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
# Modules
44
from typing import Any
5+
56
from xpp.modules.ops.shared import (
67
fetch_io_args, ensure_arguments,
78
InvalidArgument

src/xpp/modules/ops/stdlib/stdio.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# Modules
44
import sys
55
from time import sleep
6+
67
from xpp.modules.ops.shared import (
78
fetch_io_args, InvalidArgument
89
)

src/xpp/modules/ops/stdlib/strman.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# Modules
44
from typing import Any, List
55
from types import FunctionType
6+
67
from xpp.modules.ops.shared import (
78
fetch_io_args, InvalidArgument
89
)

0 commit comments

Comments
 (0)