Skip to content

Commit

Permalink
Add types
Browse files Browse the repository at this point in the history
  • Loading branch information
TomHodson committed Oct 14, 2024
1 parent c6b3e31 commit d9a9539
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions pyfdb/pyfdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
import json
import os
from functools import wraps
from pathlib import Path
from typing import Optional, Union

import cffi
import findlibs
Expand Down Expand Up @@ -317,9 +319,9 @@ class FDB:

def __init__(
self,
config=None,
user_config=None,
fdb_home=None,
config: Optional[dict] = None,
user_config: Optional[dict] = None,
fdb_home: Union[str, Path, None] = None,
):
"""
Args:
Expand Down

0 comments on commit d9a9539

Please sign in to comment.