M lazy-lock.json M lua/custom/configs/lspconfig.lua M lua/custom/init.lua A lua/custom/journal.lua A nvim_venv/bin/Activate.ps1 A nvim_venv/bin/activate A nvim_venv/bin/activate.csh A nvim_venv/bin/activate.fish
13 lines
234 B
Python
13 lines
234 B
Python
from typing import NamedTuple
|
|
|
|
|
|
class FeatureLibLocation(NamedTuple):
|
|
"""A location in a feature file"""
|
|
|
|
file: str
|
|
line: int
|
|
column: int
|
|
|
|
def __str__(self):
|
|
return f"{self.file}:{self.line}:{self.column}"
|