Skip to content

Commit

Permalink
PR Comments
Browse files Browse the repository at this point in the history
  • Loading branch information
boazhaim committed Sep 3, 2024
1 parent 5cc2515 commit 8b81a4d
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
# provided with the software product.
#
from pathlib import Path
from abc import ABC, abstractmethod
from typing import List


class BaseExtractor:
Expand All @@ -24,3 +26,9 @@ def is_exists_get_as_path(self, location) -> Path:
if location.exists():
return location
return None

@abstractmethod
def extract_files(self, files_to_extract: List[str],
directories_to_extract: List[str],
destination: str):
pass

0 comments on commit 8b81a4d

Please sign in to comment.