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
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@

# General information about the project.
project = "PyModbus" # pylint: disable=invalid-name
copyright = "2017, Sanjay" # pylint: disable=redefined-builtin,invalid-name
author = "Sanjay" # pylint: disable=invalid-name
copyright = "See license" # pylint: disable=redefined-builtin,invalid-name
author = "Open Source volunteers" # pylint: disable=invalid-name

# The version info for the project you"re documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand Down
6 changes: 0 additions & 6 deletions pymodbus/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
"""Pymodbus: Modbus Protocol Implementation.

TwistedModbus is built on top of the code developed by:

Copyright (c) 2001-2005 S.W.A.C. GmbH, Germany.
Copyright (c) 2001-2005 S.W.A.C. Bohemia s.r.o., Czech Republic.
Hynek Petrak <hynek@swac.cz>

Released under the the BSD license
"""

Expand Down
5 changes: 1 addition & 4 deletions pymodbus/repl/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
"""Pymodbus REPL Module.

Copyright (c) 2018 Riptide IO, Inc. All Rights Reserved.
"""
"""Pymodbus REPL Module."""
6 changes: 1 addition & 5 deletions pymodbus/repl/client/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1 @@
"""Repl client.

Copyright (c) 2020 by RiptideIO
All rights reserved.
"""
"""Repl client."""
6 changes: 1 addition & 5 deletions pymodbus/repl/client/completer.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
"""Command Completion for pymodbus REPL.

Copyright (c) 2018 Riptide IO, Inc. All Rights Reserved.

"""
"""Command Completion for pymodbus REPL."""
from prompt_toolkit.application.current import get_app

# pylint: disable=missing-type-doc
Expand Down
6 changes: 1 addition & 5 deletions pymodbus/repl/client/helper.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
"""Helper Module for REPL actions.

Copyright (c) 2018 Riptide IO, Inc. All Rights Reserved.

"""
"""Helper Module for REPL actions."""
from collections import OrderedDict
import inspect

Expand Down
6 changes: 1 addition & 5 deletions pymodbus/repl/client/main.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
"""Pymodbus REPL Entry point.

Copyright (c) 2018 Riptide IO, Inc. All Rights Reserved.

"""
"""Pymodbus REPL Entry point."""
import logging
import os.path
import sys
Expand Down
6 changes: 1 addition & 5 deletions pymodbus/repl/client/mclient.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
"""Modbus Clients to be used with REPL.

Copyright (c) 2018 Riptide IO, Inc. All Rights Reserved.

"""
"""Modbus Clients to be used with REPL."""
# pylint: disable=missing-type-doc
import functools

Expand Down
6 changes: 1 addition & 5 deletions pymodbus/repl/server/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1 @@
"""Repl server.

Copyright (c) 2020 by RiptideIO
All rights reserved.
"""
"""Repl server."""
6 changes: 1 addition & 5 deletions pymodbus/repl/server/cli.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
"""Repl server cli.

Copyright (c) 2020 by RiptideIO
All rights reserved.
"""
"""Repl server cli."""
import logging
import shutil

Expand Down
6 changes: 1 addition & 5 deletions pymodbus/repl/server/main.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
"""Repl server main.

Copyright (c) 2020 by RiptideIO
All rights reserved.
"""
"""Repl server main."""
import asyncio
import json
import logging
Expand Down
6 changes: 1 addition & 5 deletions pymodbus/server/reactive/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1 @@
"""Initialize.

Copyright (c) 2020 by RiptideIO
All rights reserved.
"""
"""Initialize."""
6 changes: 1 addition & 5 deletions pymodbus/server/reactive/default_config.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
"""Default config.

Copyright (c) 2020 by RiptideIO
All rights reserved.
"""
"""Default config."""

DEFUALT_CONFIG = { # pylint: disable=consider-using-namedtuple-or-dataclass
"tcp": {
Expand Down
6 changes: 1 addition & 5 deletions pymodbus/server/reactive/main.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
"""Reactive main.

Copyright (c) 2020 by RiptideIO
All rights reserved.
"""
"""Reactive main."""
import asyncio
import logging

Expand Down