mirror of
https://github.com/helix-editor/helix
synced 2026-08-06 15:02:59 +02:00
12 lines
315 B
Python
12 lines
315 B
Python
import os
|
|
# ^ @namespace
|
|
class Widget:
|
|
# ^ @type
|
|
def method(self, count: int) -> bool:
|
|
# ^ @function
|
|
# ^ @variable.builtin
|
|
# ^ @variable.parameter
|
|
# ^ @type.builtin
|
|
return self.helper(count)
|
|
# ^ @function.method
|