Skip to content

Commit 64db194

Browse files
remove types accidentally cherry-picked from master
1 parent 57d46d3 commit 64db194

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Signal.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ local Signal = {}
4343

4444
Signal.__index = Signal
4545

46-
function Signal.new(store: Store?)
46+
function Signal.new(store)
4747
local self = {
4848
_listeners = {},
4949
_store = store,
@@ -67,7 +67,7 @@ function Signal:connect(callback)
6767
)
6868
end
6969

70-
local listener: Listener = {
70+
local listener = {
7171
callback = callback,
7272
disconnected = false,
7373
connectTraceback = nil,

0 commit comments

Comments
 (0)