From 2dda3b6cfc2ae580d45279203d62a841c093528e Mon Sep 17 00:00:00 2001 From: Thomas Feldmann Date: Thu, 31 Mar 2022 11:41:01 +0200 Subject: [PATCH] fix type hints --- organize/cli.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/organize/cli.py b/organize/cli.py index faf9b512..f5918da2 100644 --- a/organize/cli.py +++ b/organize/cli.py @@ -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 @@ -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