Skip to content

Commit

Permalink
Fix sqlfluff.
Browse files Browse the repository at this point in the history
  • Loading branch information
Bachmann1234 committed Jul 9, 2021
1 parent a66af47 commit 634d0a1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion diff_cover/violationsreporters/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ def violations(self, src_path):
Return a list of Violations recorded in `src_path`.
"""

@abstractmethod
def measured_lines(self, src_path):
"""
Return a list of the lines in src_path that were measured
Expand All @@ -46,6 +45,9 @@ def measured_lines(self, src_path):
The diff reporter generator will then use all changed lines
provided by the diff.
"""
# An existing quality plugin "sqlfluff" depends on this
# being not abstract and returning None
return None

def name(self):
"""
Expand Down

0 comments on commit 634d0a1

Please sign in to comment.