Skip to content

Commit

Permalink
correct isort for test numeric
Browse files Browse the repository at this point in the history
  • Loading branch information
syurkevi committed Apr 12, 2024
1 parent 2a68b8e commit 6deefda
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
import ctypes

import arrayfire_wrapper.dtypes as dtype
import arrayfire_wrapper.lib as wrapper
from arrayfire_wrapper.defines import AFArray
from arrayfire_wrapper.dtypes import float32
from arrayfire_wrapper.lib._utility import binary_op, call_from_clib, unary_op
from arrayfire_wrapper.lib.create_and_modify_array.create_array import create_constant_array
from arrayfire_wrapper.lib.mathematical_functions.arithmetic_operations import sub


import arrayfire_wrapper.dtypes as dtype
import arrayfire_wrapper.lib as wrapper


def abs_(arr: AFArray, /) -> AFArray:
"""
source: https://arrayfire.org/docs/group__arith__func__abs.htm#ga7e8b3c848e6cda3d1f3b0c8b2b4c3f8f
Expand Down
2 changes: 1 addition & 1 deletion tests/test_numeric.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import arrayfire_wrapper.dtypes as dtype
import arrayfire_wrapper.lib as wrapper
from tests.utility_functions import check_type_supported, get_all_types, get_real_types, get_complex_types
from tests.utility_functions import check_type_supported, get_all_types, get_complex_types, get_real_types


@pytest.mark.parametrize(
Expand Down

0 comments on commit 6deefda

Please sign in to comment.