From 5021f08910811fcfaacd7d7d7eb83dadb9bd8668 Mon Sep 17 00:00:00 2001 From: RiskoZoSlovenska Date: Tue, 5 Mar 2024 11:46:17 -0500 Subject: [PATCH] Fix luacheck warning in `array.lua` --- example/array.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example/array.lua b/example/array.lua index de62b67..4068ca1 100755 --- a/example/array.lua +++ b/example/array.lua @@ -2,8 +2,8 @@ -- turn a vips image into a lua array -vips = require "vips" -ffi = require "ffi" +local vips = require "vips" +local ffi = require "ffi" -- make a tiny two band u16 image whose pixels are their coordinates local im = vips.Image.xyz(3, 2):cast("ushort")