Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tango
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LOFAR2.0
tango
Merge requests
!408
L2SS-876
: Get current RECV values before updating through antennafield
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
L2SS-876
: Get current RECV values before updating through antennafield
L2SS-876-antennafield-defaults
into
master
Overview
17
Commits
8
Pipelines
0
Changes
8
All threads resolved!
Show all comments
Merged
Corné Lukken
requested to merge
L2SS-876-antennafield-defaults
into
master
2 years ago
Overview
17
Commits
8
Pipelines
0
Changes
8
All threads resolved!
Show all comments
Expand
Closes
L2SS-876
Edited
2 years ago
by
Corné Lukken
0
0
Merge request reports
Compare
master
version 8
40c6c715
2 years ago
version 7
7e0cc2d2
2 years ago
version 6
9e8c25de
2 years ago
version 5
56601361
2 years ago
version 4
e43e2377
2 years ago
version 3
6cd0f1d6
2 years ago
version 2
1ea328dd
2 years ago
version 1
3f9aaa9d
2 years ago
master (base)
and
latest version
latest version
c91be878
8 commits,
2 years ago
version 8
40c6c715
7 commits,
2 years ago
version 7
7e0cc2d2
6 commits,
2 years ago
version 6
9e8c25de
5 commits,
2 years ago
version 5
56601361
4 commits,
2 years ago
version 4
e43e2377
4 commits,
2 years ago
version 3
6cd0f1d6
3 commits,
2 years ago
version 2
1ea328dd
2 commits,
2 years ago
version 1
3f9aaa9d
1 commit,
2 years ago
8 files
+
492
−
118
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
8
Search (e.g. *.vue) (Ctrl+P)
tangostationcontrol/tangostationcontrol/common/type_checking.py
0 → 100644
+
23
−
0
Options
# -*- coding: utf-8 -*-
#
# Distributed under the terms of the APACHE license.
# See LICENSE.txt for more info.
from
collections.abc
import
Sequence
import
numpy
def
is_sequence
(
obj
):
"""
Identify sequences / collections
"""
return
isinstance
(
obj
,
Sequence
)
or
isinstance
(
obj
,
numpy
.
ndarray
)
def
sequence_not_str
(
obj
):
"""
Separate sequences / collections from str, byte or bytearray
"""
return
is_sequence
(
obj
)
and
not
isinstance
(
obj
,
(
str
,
bytes
,
bytearray
))
def
type_not_sequence
(
obj
):
"""
Separate sequences / collections from types
"""
return
not
is_sequence
(
obj
)
and
isinstance
(
obj
,
type
)
Loading