mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-22 13:15:12 +00:00
9df2f1ff13
* Apply isort * Tweak isort config * Add env.py as a known_first_party * Add one missing known first party * Make config compat with older isort versions * Add another comment * Revert pyproject setting
8 lines
167 B
Python
8 lines
167 B
Python
# -*- coding: utf-8 -*-
|
|
import sys
|
|
|
|
import test_cmake_build
|
|
|
|
assert test_cmake_build.add(1, 2) == 3
|
|
print("{} imports, runs, and adds: 1 + 2 = 3".format(sys.argv[1]))
|