Commit 9f525219 authored by Joel Collins's avatar Joel Collins
Browse files

Updated all log strings to new format

parent 36e837d3
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -14,6 +14,5 @@ repos:
      - id: pylint
        name: pylint
        entry: poetry run pylint
        files: "./openflexure_microscope/"
        language: system
        types: [python]
+6 −2
Original line number Diff line number Diff line
[MESSAGES CONTROL]

disable=C0330,C0326,W1202,W0511,C,R
disable=fixme,C,R
max-line-length = 88

[LOGGING]

logging-format-style=new
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
@@ -38,7 +38,7 @@ sys.modules.update((mod_name, Mock()) for mod_name in mock_imports)
# -- Project information -----------------------------------------------------

project = "OpenFlexure Microscope Software"
copyright = "2018, Bath Open Instrumentation Group"
copyright = "2018, Bath Open Instrumentation Group"  # pylint: disable=redefined-builtin
author = "Bath Open Instrumentation Group"

# The short X.Y version
+1 −1
Original line number Diff line number Diff line
from labthings import Schema, fields, find_component
from labthings.extensions import BaseExtension
from labthings.views import PropertyView, View
from labthings.views import PropertyView

## Extension methods

+1 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@ import io # Used in our capture action
from flask import send_file  # Used to send images from our server
from labthings import Schema, fields, find_component
from labthings.extensions import BaseExtension
from labthings.views import ActionView, PropertyView, View
from labthings.views import ActionView, PropertyView

## Extension methods

Loading