Skip to content

Commit

Permalink
fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
PedramNavid committed Aug 13, 2024
1 parent 2639c74 commit e701d10
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from typing import List

from dagster import asset


Expand All @@ -6,12 +8,12 @@ def download_files() -> str:
...


def unzip_files(zipfile: str) -> list[str]:
def unzip_files(zipfile: str) -> List[str]:
# Unzip files to local disk or persistent storage
...


def load_data(files: list[str]):
def load_data(files: List[str]):
# Read data previously written and store in a data warehouse
...

Expand Down
1 change: 1 addition & 0 deletions pyright/master/include.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
docs/dagster-ui-screenshot
docs/sphinx/_ext/dagster-sphinx
docs/sphinx/conf.py
docs/docs-next/docs
python_modules
examples
integration_tests
Expand Down

0 comments on commit e701d10

Please sign in to comment.