Skip to content

Commit

Permalink
Fix typing error
Browse files Browse the repository at this point in the history
  • Loading branch information
lukehoffmann committed Aug 22, 2024
1 parent dd81dbe commit 8d72ccd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/fab/tools/linker.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

import os
from pathlib import Path
from typing import cast, List, Optional
from typing import cast, Dict, List, Optional

from fab.tools.category import Category
from fab.tools.compiler import Compiler
Expand Down Expand Up @@ -52,7 +52,7 @@ def __init__(self, name: Optional[str] = None,
self.flags.extend(os.getenv("LDFLAGS", "").split())

# Maintain a set of flags for common libraries.
self._lib_flags: dict[str, List[str]] = {}
self._lib_flags: Dict[str, List[str]] = {}
# Include netcdf as an example, since it is reasonable portable
self.add_lib_flags(
'netcdf',
Expand Down

0 comments on commit 8d72ccd

Please sign in to comment.