Skip to content

Commit

Permalink
chore: remove wrong type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
pquadri committed Aug 8, 2024
1 parent 0ae3f85 commit 257be7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snowflake_utils/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def get_create_temporary_file_format_statement(self, file_format: str) -> str:
"""
return file_format_statement

def get_create_schema_statement(self: str) -> str:
def get_create_schema_statement(self) -> str:
""" """
logging.debug(f"Creating schema if it not exsists: {self.schema_}")
return f"CREATE SCHEMA IF NOT EXISTS {self.schema_}"
Expand Down

0 comments on commit 257be7f

Please sign in to comment.