Skip to content

Commit

Permalink
GIT: type ignore import of lightning
Browse files Browse the repository at this point in the history
  • Loading branch information
anmorgunov committed May 31, 2024
1 parent 10a9533 commit 038e955
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion DirectMultiStep/Models/Training.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

from typing import Any, Callable, Dict, List, Optional, Tuple, cast

import lightning as pl
import lightning as pl # type: ignore
import numpy as np
import torch
import torch.nn as nn
Expand Down
2 changes: 1 addition & 1 deletion assess_single.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
from pathlib import Path
from typing import List, Tuple, cast

import lightning as L
import lightning as L # type:ignore
import rdkit.Chem as Chem # type: ignore
import torch
import yaml
Expand Down
2 changes: 1 addition & 1 deletion train_nosm.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

from pathlib import Path

import lightning as L
import lightning as L # type: ignore
import torch
from lightning.pytorch.callbacks import ModelCheckpoint, RichModelSummary

Expand Down
2 changes: 1 addition & 1 deletion train_wsm.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

from pathlib import Path

import lightning as L
import lightning as L # type: ignore
import torch
from lightning.pytorch.callbacks import ModelCheckpoint, RichModelSummary

Expand Down

0 comments on commit 038e955

Please sign in to comment.