Skip to content

Commit

Permalink
Fix types and lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mgcth committed May 4, 2024
1 parent 025444a commit dd2636e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/github-action-type.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
pip install -e ".[type]"
- name: Type checking with mypy
run: >
MYPYPATH=src
mypy
--namespace-packages
--explicit-package-bases
--allow-redefinition
--ignore-missing-imports
src
1 change: 0 additions & 1 deletion src/lantmateriet/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import os
import zipfile
from pathlib import Path
from typing import Optional

import requests
from tqdm import tqdm
Expand Down
2 changes: 1 addition & 1 deletion src/lantmateriet/geometry.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import os
from copy import deepcopy
from os import path
from typing import Optional, Union
from typing import Union

import geopandas as gpd
from lantmateriet import config
Expand Down

0 comments on commit dd2636e

Please sign in to comment.