Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/development.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:
flake8 --ignore=E203,E722,W503 datajoint \
--count --max-complexity=62 --max-line-length=127 --statistics \
--per-file-ignores='datajoint/diagram.py:C901'
black --required-version '24.2.0' --check -v datajoint tests tests_old
black --required-version '24.2.0' --check -v datajoint tests
codespell:
name: Check for spelling errors
permissions:
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
- Fixed - Added encapsulating double quotes to comply with [DOT language](https://graphviz.org/doc/info/lang.html) - PR [#1177](https://github.com/datajoint/datajoint-python/pull/1177)
- Added - Datajoint python CLI ([#940](https://github.com/datajoint/datajoint-python/issues/940)) PR [#1095](https://github.com/datajoint/datajoint-python/pull/1095)
- Added - Ability to set hidden attributes on a table - PR [#1091](https://github.com/datajoint/datajoint-python/pull/1091)
- Added - Ability to specify a list of keys to popuate - PR [#989](https://github.com/datajoint/datajoint-python/pull/989)
- Added - Ability to specify a list of keys to populate - PR [#989](https://github.com/datajoint/datajoint-python/pull/989)
- Fixed - fixed topological sort [#1057](https://github.com/datajoint/datajoint-python/issues/1057)- PR [#1184](https://github.com/datajoint/datajoint-python/pull/1184)
- Fixed - .parts() not always returning parts [#1103](https://github.com/datajoint/datajoint-python/issues/1103)- PR [#1184](https://github.com/datajoint/datajoint-python/pull/1184)

Expand Down
2 changes: 1 addition & 1 deletion datajoint/user_tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ class _AliasNode:


def _get_tier(table_name):
"""given the table name, return"""
"""given the table name, return the user table class."""
if not table_name.startswith("`"):
return _AliasNode
else:
Expand Down
160 changes: 0 additions & 160 deletions tests_old/__init__.py

This file was deleted.

46 changes: 0 additions & 46 deletions tests_old/data/Course.csv

This file was deleted.

2 changes: 0 additions & 2 deletions tests_old/data/CurrentTerm.csv

This file was deleted.

9 changes: 0 additions & 9 deletions tests_old/data/Department.csv

This file was deleted.

Loading