Skip to content

Commit

Permalink
fix type hints
Browse files Browse the repository at this point in the history
  • Loading branch information
tfeldmann committed Mar 31, 2022
1 parent 86d20d8 commit 2dda3b6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions organize/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import os
import sys
from pathlib import Path
from typing import Tuple
from typing import Tuple, Optional

import click
from fs import appfs
Expand Down Expand Up @@ -94,8 +94,8 @@ def run_local(
config_path: Path,
working_dir: Path,
simulate: bool,
tags: Tuple[str] = tuple(),
skip_tags: Tuple[str] = tuple(),
tags: Optional[Tuple[str]] = None,
skip_tags: Optional[Tuple[str]] = None,
):
from schema import SchemaError

Expand Down

0 comments on commit 2dda3b6

Please sign in to comment.