Skip to content

Commit 1266292

Browse files
authored
Clean copyright statements, to ensure we follow FOSS rules. (#1014)
1 parent d9fdc5a commit 1266292

File tree

14 files changed

+14
-67
lines changed

14 files changed

+14
-67
lines changed

doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@
6868

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

7474
# The version info for the project you"re documenting, acts as replacement for
7575
# |version| and |release|, also used in various other places throughout the

pymodbus/__init__.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
"""Pymodbus: Modbus Protocol Implementation.
22
3-
TwistedModbus is built on top of the code developed by:
4-
5-
Copyright (c) 2001-2005 S.W.A.C. GmbH, Germany.
6-
Copyright (c) 2001-2005 S.W.A.C. Bohemia s.r.o., Czech Republic.
7-
Hynek Petrak <hynek@swac.cz>
8-
93
Released under the the BSD license
104
"""
115

pymodbus/repl/__init__.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1 @@
1-
"""Pymodbus REPL Module.
2-
3-
Copyright (c) 2018 Riptide IO, Inc. All Rights Reserved.
4-
"""
1+
"""Pymodbus REPL Module."""

pymodbus/repl/client/__init__.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1 @@
1-
"""Repl client.
2-
3-
Copyright (c) 2020 by RiptideIO
4-
All rights reserved.
5-
"""
1+
"""Repl client."""

pymodbus/repl/client/completer.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
"""Command Completion for pymodbus REPL.
2-
3-
Copyright (c) 2018 Riptide IO, Inc. All Rights Reserved.
4-
5-
"""
1+
"""Command Completion for pymodbus REPL."""
62
from prompt_toolkit.application.current import get_app
73

84
# pylint: disable=missing-type-doc

pymodbus/repl/client/helper.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
"""Helper Module for REPL actions.
2-
3-
Copyright (c) 2018 Riptide IO, Inc. All Rights Reserved.
4-
5-
"""
1+
"""Helper Module for REPL actions."""
62
from collections import OrderedDict
73
import inspect
84

pymodbus/repl/client/main.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
"""Pymodbus REPL Entry point.
2-
3-
Copyright (c) 2018 Riptide IO, Inc. All Rights Reserved.
4-
5-
"""
1+
"""Pymodbus REPL Entry point."""
62
import logging
73
import os.path
84
import sys

pymodbus/repl/client/mclient.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
"""Modbus Clients to be used with REPL.
2-
3-
Copyright (c) 2018 Riptide IO, Inc. All Rights Reserved.
4-
5-
"""
1+
"""Modbus Clients to be used with REPL."""
62
# pylint: disable=missing-type-doc
73
import functools
84

pymodbus/repl/server/__init__.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1 @@
1-
"""Repl server.
2-
3-
Copyright (c) 2020 by RiptideIO
4-
All rights reserved.
5-
"""
1+
"""Repl server."""

pymodbus/repl/server/cli.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
"""Repl server cli.
2-
3-
Copyright (c) 2020 by RiptideIO
4-
All rights reserved.
5-
"""
1+
"""Repl server cli."""
62
import logging
73
import shutil
84

0 commit comments

Comments
 (0)