mirror of
https://github.com/All-Hands-AI/OpenHands.git
synced 2026-01-09 14:57:59 -05:00
10 lines
429 B
Python
10 lines
429 B
Python
"""Linter module for OpenHands.
|
|
|
|
Part of this Linter module is adapted from Aider (Apache 2.0 License, [original code](https://github.com/paul-gauthier/aider/blob/main/aider/linter.py)). Please see the [original repository](https://github.com/paul-gauthier/aider) for more information.
|
|
"""
|
|
|
|
from openhands.linter.base import LintResult
|
|
from openhands.linter.linter import DefaultLinter
|
|
|
|
__all__ = ['DefaultLinter', 'LintResult']
|