mod_storage_internal: Ignore unused 'self' argument [luacheck]
authorKim Alvefur <zash@zash.se>
Fri, 31 Mar 2017 17:39:41 +0200
changeset 8023 342ce07836de
parent 8022 925098aad268
child 8024 83f18982bcfd
mod_storage_internal: Ignore unused 'self' argument [luacheck]
plugins/mod_storage_internal.lua
--- a/plugins/mod_storage_internal.lua	Fri Mar 31 17:38:46 2017 +0200
+++ b/plugins/mod_storage_internal.lua	Fri Mar 31 17:39:41 2017 +0200
@@ -12,11 +12,11 @@
 	return setmetatable({ store = store, type = typ }, mt);
 end
 
-function driver:stores(username)
+function driver:stores(username) -- luacheck: ignore 212/self
 	return datamanager.stores(username, host);
 end
 
-function driver:purge(user)
+function driver:purge(user) -- luacheck: ignore 212/self
 	return datamanager.purge(user, host);
 end