-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
python: Replace str find with in #279
base: main
Are you sure you want to change the base?
Conversation
…her attributes and properties
…t in modify_datetime
…in" check for projlabel or projection string
…asets in gui/wxpython/timeline/frame.py and gui/wxpython/tplot/frame.py
…sets in gui/wxpython/timeline/frame.py and gui/wxpython/tplot/frame.py
…nstructor to show that x, y and z are not only integers.
…ated AbstractDataset methods
…ng in create_location
f3d9df7
to
4d75e98
Compare
class AnySpaceTimeT(SpaceTimeT[TT], Generic[TT]): | ||
pass | ||
|
||
# class AnySpaceTimeT(SpaceTimeT[TT]): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[black] reported by reviewdog 🐶
# class AnySpaceTimeT(SpaceTimeT[TT]): | |
# class AnySpaceTimeT(SpaceTimeT[TT]): |
import copy | ||
import os | ||
import sys | ||
import uuid | ||
from abc import ABCMeta, abstractmethod | ||
from datetime import datetime | ||
from pathlib import Path | ||
from typing import Generic |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[ruff] reported by reviewdog 🐶
from typing import Generic | |
from typing import Generic, TYPE_CHECKING |
from .abstract_dataset import AbstractDataset, AbstractDatasetComparisonKeyStartTime | ||
from .abstract_map_dataset import AbstractMapDataset |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[ruff] reported by reviewdog 🐶
from .abstract_map_dataset import AbstractMapDataset |
@@ -42,7 +47,10 @@ | |||
############################################################################### |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[ruff] reported by reviewdog 🐶
############################################################################### | |
if TYPE_CHECKING: | |
from .abstract_map_dataset import AbstractMapDataset | |
############################################################################### |
No description provided.