Skip to content

Commit 0c4ce16

Browse files
Adjust styling.
1 parent 00456da commit 0c4ce16

File tree

5 files changed

+1
-6
lines changed

5 files changed

+1
-6
lines changed

LNX-docker-compose.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@ services:
8585
volumes:
8686
- .:/src
8787
- /tmp/.X11-unix:/tmp/.X11-unix:rw
88-
# - ./apk_requirements.txt:/tmp/apk_requirements.txt
8988
# - ./notebooks:/home/dja/notebooks
9089
networks:
9190
main:

datajoint/diagram.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@ class Diagram(nx.DiGraph):
9494
"""
9595

9696
def __init__(self, source, context=None):
97-
9897
if isinstance(source, Diagram):
9998
# copy constructor
10099
self.nodes_to_show = set(source.nodes_to_show)
@@ -302,7 +301,6 @@ def _make_graph(self):
302301
return graph
303302

304303
def make_dot(self):
305-
306304
graph = self._make_graph()
307305
graph.nodes()
308306

datajoint/heading.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,6 @@ def _init_from_database(self):
273273

274274
# additional attribute properties
275275
for attr in attributes:
276-
277276
attr.update(
278277
in_key=(attr["in_key"] == "PRI"),
279278
database=database,

datajoint/settings.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@
6262

6363

6464
class Config(collections.abc.MutableMapping):
65-
6665
instance = None
6766

6867
def __init__(self, *args, **kwargs):

docker-compose-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# PY_VER=3.10 IMAGE=djbase DISTRO=debian DJ_VERSION=$(grep -oP '\d+\.\d+\.\d+' datajoint/version.py) HOST_UID=$(id -u) docker compose -f docker-compose-build.yaml up --exit-code-from app --build
1+
# PY_VER=3.9 IMAGE=djbase DISTRO=debian DJ_VERSION=$(grep -oP '\d+\.\d+\.\d+' datajoint/version.py) HOST_UID=$(id -u) docker compose -f docker-compose-build.yaml up --exit-code-from app --build
22
#
33
# Intended for updating dependencies and docker image.
44
# Used to build release artifacts.

0 commit comments

Comments
 (0)