Skip to content

Commit

Permalink
[ops] Match my modern syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
iiPythonx committed Mar 10, 2024
1 parent f477438 commit 211e4dd
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/xpp/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright 2022-2024 iiPython

__version__ = "3.1.2"
__version__ = "3.1.3"

from .extra.config import config # noqa
from .core.sections import load_sections # noqa
Expand Down
1 change: 1 addition & 0 deletions src/xpp/modules/ops/stdlib/math.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
from typing import List
from random import randint
from types import FunctionType

from xpp.core.datastore import Datastore
from xpp.modules.ops.shared import (
fetch_io_args, InvalidArgument
Expand Down
1 change: 1 addition & 0 deletions src/xpp/modules/ops/stdlib/objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

# Modules
from typing import Any

from xpp.modules.ops.shared import (
fetch_io_args, ensure_arguments,
InvalidArgument
Expand Down
1 change: 1 addition & 0 deletions src/xpp/modules/ops/stdlib/stdio.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
# Modules
import sys
from time import sleep

from xpp.modules.ops.shared import (
fetch_io_args, InvalidArgument
)
Expand Down
1 change: 1 addition & 0 deletions src/xpp/modules/ops/stdlib/strman.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
# Modules
from typing import Any, List
from types import FunctionType

from xpp.modules.ops.shared import (
fetch_io_args, InvalidArgument
)
Expand Down

0 comments on commit 211e4dd

Please sign in to comment.