Fixed lint with flake8. Update a Python version in README.md

This commit is contained in:
Vladyslav Hroshev
2025-04-01 21:56:13 +03:00
parent 75cbf08879
commit b44c12c18f
2 changed files with 3 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
import os
from typing import Tuple
type LabeledFileGroup = tuple[str, str]
type LabeledFileGroup = Tuple[str, str]
class FilesLabeler:
def __init__(self, directory: str, *args: str):