Skip to content

Commit

Permalink
add typing
Browse files Browse the repository at this point in the history
  • Loading branch information
colin-rogers-dbt committed Sep 17, 2024
1 parent b6ddb45 commit f4d7566
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env python
import os
from pathlib import Path
from typing import Dict

from setuptools import find_namespace_packages, setup

Expand All @@ -16,7 +17,7 @@


def _get_package_version() -> str:
attributes = {}
attributes: Dict[str, str] = {}
exec(VERSION.read_text(), attributes)
return attributes["version"]

Expand Down

0 comments on commit f4d7566

Please sign in to comment.