Skip to content

Commit

Permalink
Merge pull request #485 from lsst/tickets/DM-29073
Browse files Browse the repository at this point in the history
DM-29073: Make ButlerURI immutable
  • Loading branch information
timj committed Mar 5, 2021
2 parents ec59584 + 960351f commit ec69339
Show file tree
Hide file tree
Showing 56 changed files with 1,100 additions and 698 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/docstyle.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: lint docstrings

on:
push:
branches:
- master
pull_request:

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8

- name: Install
run: pip install pydocstyle

- name: Run linter
run: pydocstyle python/lsst/daf/butler/core/
4 changes: 1 addition & 3 deletions python/lsst/daf/butler/core/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
"""
Core code for butler.
"""
"""Core code for butler."""

# Do not export the utility routines from utils and queries.

Expand Down

0 comments on commit ec69339

Please sign in to comment.