Skip to content

Commit

Permalink
fix: attempting to fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
dyga01 committed Nov 21, 2024
1 parent e20d71e commit 556e17a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions gatorgrade/input/checks.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Define check classes."""

from typing import List
from typing import Optional, List


class ShellCheck: # pylint: disable=too-few-public-methods
Expand All @@ -9,10 +9,10 @@ class ShellCheck: # pylint: disable=too-few-public-methods
def __init__(
self,
command: str,
description: str = None,
description: Optional[str] = None,
json_info=None,
gg_args: List[str] = None,
): # type: ignore
gg_args: Optional[List[str]] = None,
):
"""Construct a ShellCheck.
Args:
Expand Down

0 comments on commit 556e17a

Please sign in to comment.