Skip to content

Commit

Permalink
zig: remove unnecessary ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
jostrzol committed Jan 9, 2025
1 parent 6f3a7b9 commit 349ea70
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions lizard_languages/zig.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,16 @@


class ZigReader(CodeReader, CCppCommentsMixin):
# pylint: disable=R0903

ext = ["zig"]
language_names = ["zig"]
_conditions = {"if", "for", "while", "and", "or", "orelse", "try", "catch", "=>"}

def __init__(self, context):
super(ZigReader, self).__init__(context)
super().__init__(context)
self.parallel_states = [ZigStates(context)]


class ZigStates(GoLikeStates): # pylint: disable=R0903
class ZigStates(GoLikeStates):
FUNC_KEYWORD = "fn"

_type_definition = GoLikeStates._state_global

0 comments on commit 349ea70

Please sign in to comment.