Skip to content

Commit

Permalink
lint neptune after 1.12.0 release (#3055)
Browse files Browse the repository at this point in the history
  • Loading branch information
avishniakov authored Oct 7, 2024
1 parent cba152e commit 5d0b9eb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from hashlib import md5
from typing import TYPE_CHECKING, Any, List, Optional

import neptune # type: ignore[import-untyped]
import neptune

import zenml
from zenml.client import Client
Expand All @@ -38,7 +38,7 @@ class RunProvider(metaclass=SingletonMetaClass):

def __init__(self) -> None:
"""Initialize RunProvider. Called with no arguments."""
self._active_run = None
self._active_run: Optional["Run"] = None
self._project: Optional[str]
self._run_name: Optional[str]
self._token: Optional[str]
Expand Down

0 comments on commit 5d0b9eb

Please sign in to comment.