From 04ff7b47369d63616929fe1c269d49935c4d0269 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Thu, 5 Sep 2024 04:18:23 -0400 Subject: [PATCH] add missing import --- python/lammps/core.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/lammps/core.py b/python/lammps/core.py index 6eba38b1e6..249b4719e0 100644 --- a/python/lammps/core.py +++ b/python/lammps/core.py @@ -19,7 +19,8 @@ from __future__ import print_function import os import sys from ctypes import CDLL, POINTER, RTLD_GLOBAL, CFUNCTYPE, py_object, byref, cast, sizeof, \ - create_string_buffer, c_int, c_int32, c_int64, c_double, c_void_p, c_char_p, pythonapi + create_string_buffer, c_int, c_int32, c_int64, c_double, c_void_p, c_char_p, pythonapi, \ + pointer from os.path import dirname, abspath, join from inspect import getsourcefile