Browse Source

Remove redundant "coding: utf-8" lines (#9786)

Part of #9744

Removes all redundant `# -*- coding: utf-8 -*-` lines from files, as python 3 automatically reads source code as utf-8 now.

`Signed-off-by: Jonathan de Jong <jonathan@automatia.nl>`
tags/v1.33.0rc1
Jonathan de Jong 3 years ago
committed by GitHub
parent
commit
4b965c862d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
100 changed files with 1 additions and 99 deletions
  1. +0
    -1
      .buildkite/scripts/create_postgres_db.py
  2. +1
    -0
      changelog.d/9786.misc
  3. +0
    -1
      contrib/cmdclient/http.py
  4. +0
    -1
      contrib/experiments/test_messaging.py
  5. +0
    -1
      scripts-dev/mypy_synapse_plugin.py
  6. +0
    -1
      scripts-dev/sign_json
  7. +0
    -1
      scripts-dev/update_database
  8. +0
    -1
      scripts/export_signing_key
  9. +0
    -1
      scripts/generate_log_config
  10. +0
    -1
      scripts/generate_signing_key.py
  11. +0
    -1
      scripts/move_remote_media_to_new_store.py
  12. +0
    -1
      scripts/register_new_matrix_user
  13. +0
    -1
      scripts/synapse_port_db
  14. +0
    -1
      stubs/frozendict.pyi
  15. +0
    -1
      stubs/txredisapi.pyi
  16. +0
    -1
      synapse/__init__.py
  17. +0
    -1
      synapse/_scripts/register_new_matrix_user.py
  18. +0
    -1
      synapse/api/__init__.py
  19. +0
    -1
      synapse/api/auth.py
  20. +0
    -1
      synapse/api/auth_blocking.py
  21. +0
    -1
      synapse/api/constants.py
  22. +0
    -1
      synapse/api/errors.py
  23. +0
    -1
      synapse/api/filtering.py
  24. +0
    -1
      synapse/api/presence.py
  25. +0
    -1
      synapse/api/room_versions.py
  26. +0
    -1
      synapse/api/urls.py
  27. +0
    -1
      synapse/app/__init__.py
  28. +0
    -1
      synapse/app/_base.py
  29. +0
    -1
      synapse/app/admin_cmd.py
  30. +0
    -1
      synapse/app/appservice.py
  31. +0
    -1
      synapse/app/client_reader.py
  32. +0
    -1
      synapse/app/event_creator.py
  33. +0
    -1
      synapse/app/federation_reader.py
  34. +0
    -1
      synapse/app/federation_sender.py
  35. +0
    -1
      synapse/app/frontend_proxy.py
  36. +0
    -1
      synapse/app/generic_worker.py
  37. +0
    -1
      synapse/app/homeserver.py
  38. +0
    -1
      synapse/app/media_repository.py
  39. +0
    -1
      synapse/app/pusher.py
  40. +0
    -1
      synapse/app/synchrotron.py
  41. +0
    -1
      synapse/app/user_dir.py
  42. +0
    -1
      synapse/appservice/__init__.py
  43. +0
    -1
      synapse/appservice/api.py
  44. +0
    -1
      synapse/appservice/scheduler.py
  45. +0
    -1
      synapse/config/__init__.py
  46. +0
    -1
      synapse/config/__main__.py
  47. +0
    -1
      synapse/config/_base.py
  48. +0
    -1
      synapse/config/_util.py
  49. +0
    -1
      synapse/config/auth.py
  50. +0
    -1
      synapse/config/cache.py
  51. +0
    -1
      synapse/config/cas.py
  52. +0
    -1
      synapse/config/consent_config.py
  53. +0
    -1
      synapse/config/database.py
  54. +0
    -1
      synapse/config/emailconfig.py
  55. +0
    -1
      synapse/config/experimental.py
  56. +0
    -1
      synapse/config/federation.py
  57. +0
    -1
      synapse/config/groups.py
  58. +0
    -1
      synapse/config/homeserver.py
  59. +0
    -1
      synapse/config/jwt_config.py
  60. +0
    -1
      synapse/config/key.py
  61. +0
    -1
      synapse/config/logger.py
  62. +0
    -1
      synapse/config/metrics.py
  63. +0
    -1
      synapse/config/oidc_config.py
  64. +0
    -1
      synapse/config/password_auth_providers.py
  65. +0
    -1
      synapse/config/push.py
  66. +0
    -1
      synapse/config/redis.py
  67. +0
    -1
      synapse/config/registration.py
  68. +0
    -1
      synapse/config/repository.py
  69. +0
    -1
      synapse/config/room.py
  70. +0
    -1
      synapse/config/room_directory.py
  71. +0
    -1
      synapse/config/saml2_config.py
  72. +0
    -1
      synapse/config/server.py
  73. +0
    -1
      synapse/config/server_notices_config.py
  74. +0
    -1
      synapse/config/spam_checker.py
  75. +0
    -1
      synapse/config/sso.py
  76. +0
    -1
      synapse/config/stats.py
  77. +0
    -1
      synapse/config/third_party_event_rules.py
  78. +0
    -1
      synapse/config/tls.py
  79. +0
    -1
      synapse/config/tracer.py
  80. +0
    -1
      synapse/config/user_directory.py
  81. +0
    -1
      synapse/config/workers.py
  82. +0
    -1
      synapse/crypto/__init__.py
  83. +0
    -1
      synapse/crypto/event_signing.py
  84. +0
    -1
      synapse/crypto/keyring.py
  85. +0
    -1
      synapse/event_auth.py
  86. +0
    -1
      synapse/events/__init__.py
  87. +0
    -1
      synapse/events/builder.py
  88. +0
    -1
      synapse/events/presence_router.py
  89. +0
    -1
      synapse/events/snapshot.py
  90. +0
    -1
      synapse/events/spamcheck.py
  91. +0
    -1
      synapse/events/third_party_rules.py
  92. +0
    -1
      synapse/events/utils.py
  93. +0
    -1
      synapse/events/validator.py
  94. +0
    -1
      synapse/federation/__init__.py
  95. +0
    -1
      synapse/federation/federation_base.py
  96. +0
    -1
      synapse/federation/federation_client.py
  97. +0
    -1
      synapse/federation/federation_server.py
  98. +0
    -1
      synapse/federation/persistence.py
  99. +0
    -1
      synapse/federation/send_queue.py
  100. +0
    -1
      synapse/federation/sender/__init__.py

+ 0
- 1
.buildkite/scripts/create_postgres_db.py View File

@@ -1,5 +1,4 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright 2019 The Matrix.org Foundation C.I.C.
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 1
- 0
changelog.d/9786.misc View File

@@ -0,0 +1 @@
Apply `pyupgrade` across the codebase.

+ 0
- 1
contrib/cmdclient/http.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2014-2016 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
contrib/experiments/test_messaging.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2014-2016 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
scripts-dev/mypy_synapse_plugin.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2020 The Matrix.org Foundation C.I.C.
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
scripts-dev/sign_json View File

@@ -1,6 +1,5 @@
#!/usr/bin/env python
#
# -*- coding: utf-8 -*-
# Copyright 2020 The Matrix.org Foundation C.I.C.
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
scripts-dev/update_database View File

@@ -1,5 +1,4 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright 2019 The Matrix.org Foundation C.I.C.
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
scripts/export_signing_key View File

@@ -1,5 +1,4 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright 2019 The Matrix.org Foundation C.I.C.
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
scripts/generate_log_config View File

@@ -1,6 +1,5 @@
#!/usr/bin/env python3

# -*- coding: utf-8 -*-
# Copyright 2020 The Matrix.org Foundation C.I.C.
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
scripts/generate_signing_key.py View File

@@ -1,5 +1,4 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright 2019 The Matrix.org Foundation C.I.C.
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
scripts/move_remote_media_to_new_store.py View File

@@ -1,5 +1,4 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright 2017 New Vector Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
scripts/register_new_matrix_user View File

@@ -1,5 +1,4 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright 2015, 2016 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
scripts/synapse_port_db View File

@@ -1,5 +1,4 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright 2015, 2016 OpenMarket Ltd
# Copyright 2018 New Vector Ltd
# Copyright 2019 The Matrix.org Foundation C.I.C.


+ 0
- 1
stubs/frozendict.pyi View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2020 The Matrix.org Foundation C.I.C.
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
stubs/txredisapi.pyi View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2020 The Matrix.org Foundation C.I.C.
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/__init__.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2014-2016 OpenMarket Ltd
# Copyright 2018-9 New Vector Ltd
#


+ 0
- 1
synapse/_scripts/register_new_matrix_user.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2015, 2016 OpenMarket Ltd
# Copyright 2018 New Vector
#


+ 0
- 1
synapse/api/__init__.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2014-2016 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/api/auth.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2014 - 2016 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/api/auth_blocking.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2020 The Matrix.org Foundation C.I.C.
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/api/constants.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2014-2016 OpenMarket Ltd
# Copyright 2017 Vector Creations Ltd
# Copyright 2018-2019 New Vector Ltd


+ 0
- 1
synapse/api/errors.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2014-2016 OpenMarket Ltd
# Copyright 2018 New Vector Ltd
#


+ 0
- 1
synapse/api/filtering.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2015, 2016 OpenMarket Ltd
# Copyright 2017 Vector Creations Ltd
# Copyright 2018-2019 New Vector Ltd


+ 0
- 1
synapse/api/presence.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2014-2016 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/api/room_versions.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2019 New Vector Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/api/urls.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2014-2016 OpenMarket Ltd
# Copyright 2018 New Vector Ltd
#


+ 0
- 1
synapse/app/__init__.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2014-2016 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/app/_base.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2017 New Vector Ltd
# Copyright 2019-2021 The Matrix.org Foundation C.I.C
#


+ 0
- 1
synapse/app/admin_cmd.py View File

@@ -1,5 +1,4 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright 2019 Matrix.org Foundation C.I.C.
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/app/appservice.py View File

@@ -1,5 +1,4 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright 2016 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/app/client_reader.py View File

@@ -1,5 +1,4 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright 2016 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/app/event_creator.py View File

@@ -1,5 +1,4 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright 2018 New Vector Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/app/federation_reader.py View File

@@ -1,5 +1,4 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright 2016 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/app/federation_sender.py View File

@@ -1,5 +1,4 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright 2016 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/app/frontend_proxy.py View File

@@ -1,5 +1,4 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright 2016 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/app/generic_worker.py View File

@@ -1,5 +1,4 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright 2016 OpenMarket Ltd
# Copyright 2020 The Matrix.org Foundation C.I.C.
#


+ 0
- 1
synapse/app/homeserver.py View File

@@ -1,5 +1,4 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright 2014-2016 OpenMarket Ltd
# Copyright 2019 New Vector Ltd
#


+ 0
- 1
synapse/app/media_repository.py View File

@@ -1,5 +1,4 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright 2016 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/app/pusher.py View File

@@ -1,5 +1,4 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright 2016 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/app/synchrotron.py View File

@@ -1,5 +1,4 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright 2016 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/app/user_dir.py View File

@@ -1,5 +1,4 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright 2017 Vector Creations Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/appservice/__init__.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2015, 2016 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/appservice/api.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2015, 2016 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/appservice/scheduler.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2015, 2016 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/config/__init__.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2014-2016 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/config/__main__.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2015, 2016 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/config/_base.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2014-2016 OpenMarket Ltd
# Copyright 2017-2018 New Vector Ltd
# Copyright 2019 The Matrix.org Foundation C.I.C.


+ 0
- 1
synapse/config/_util.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2020 The Matrix.org Foundation C.I.C.
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/config/auth.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2015, 2016 OpenMarket Ltd
# Copyright 2020 The Matrix.org Foundation C.I.C.
#


+ 0
- 1
synapse/config/cache.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2019 Matrix.org Foundation C.I.C.
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/config/cas.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2015, 2016 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/config/consent_config.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2018 New Vector Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/config/database.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2014-2016 OpenMarket Ltd
# Copyright 2020 The Matrix.org Foundation C.I.C.
#


+ 0
- 1
synapse/config/emailconfig.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2015-2016 OpenMarket Ltd
# Copyright 2017-2018 New Vector Ltd
# Copyright 2019 The Matrix.org Foundation C.I.C.


+ 0
- 1
synapse/config/experimental.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2021 The Matrix.org Foundation C.I.C.
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/config/federation.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2020 The Matrix.org Foundation C.I.C.
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/config/groups.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2017 New Vector Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/config/homeserver.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2014-2016 OpenMarket Ltd
# Copyright 2018 New Vector Ltd
#


+ 0
- 1
synapse/config/jwt_config.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2015 Niklas Riekenbrauck
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/config/key.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2015, 2016 OpenMarket Ltd
# Copyright 2019 The Matrix.org Foundation C.I.C.
#


+ 0
- 1
synapse/config/logger.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2014-2016 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/config/metrics.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2015, 2016 OpenMarket Ltd
# Copyright 2019 The Matrix.org Foundation C.I.C.
#


+ 0
- 1
synapse/config/oidc_config.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2020 Quentin Gliech
# Copyright 2020-2021 The Matrix.org Foundation C.I.C.
#


+ 0
- 1
synapse/config/password_auth_providers.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2016 Openmarket
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/config/push.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2015, 2016 OpenMarket Ltd
# Copyright 2017 New Vector Ltd
#


+ 0
- 1
synapse/config/redis.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2020 The Matrix.org Foundation C.I.C.
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/config/registration.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2015, 2016 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/config/repository.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2014, 2015 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/config/room.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2020 The Matrix.org Foundation C.I.C.
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/config/room_directory.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2018 New Vector Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/config/saml2_config.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2018 New Vector Ltd
# Copyright 2019 The Matrix.org Foundation C.I.C.
#


+ 0
- 1
synapse/config/server.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2014-2016 OpenMarket Ltd
# Copyright 2017-2018 New Vector Ltd
# Copyright 2019 The Matrix.org Foundation C.I.C.


+ 0
- 1
synapse/config/server_notices_config.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2018 New Vector Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/config/spam_checker.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2017 New Vector Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/config/sso.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2020 The Matrix.org Foundation C.I.C.
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/config/stats.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2018 New Vector Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/config/third_party_event_rules.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2019 The Matrix.org Foundation C.I.C.
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/config/tls.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2014-2016 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/config/tracer.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2019 The Matrix.org Foundation C.I.C.d
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/config/user_directory.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2017 New Vector Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/config/workers.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2016 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/crypto/__init__.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2014-2016 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/crypto/event_signing.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
#
# Copyright 2014-2016 OpenMarket Ltd
# Copyright 2020 The Matrix.org Foundation C.I.C.


+ 0
- 1
synapse/crypto/keyring.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2014-2016 OpenMarket Ltd
# Copyright 2017, 2018 New Vector Ltd
#


+ 0
- 1
synapse/event_auth.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2014 - 2016 OpenMarket Ltd
# Copyright 2020 The Matrix.org Foundation C.I.C.
#


+ 0
- 1
synapse/events/__init__.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2014-2016 OpenMarket Ltd
# Copyright 2019 New Vector Ltd
# Copyright 2020 The Matrix.org Foundation C.I.C.


+ 0
- 1
synapse/events/builder.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2014-2016 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/events/presence_router.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2021 The Matrix.org Foundation C.I.C.
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/events/snapshot.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2014-2016 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/events/spamcheck.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2017 New Vector Ltd
# Copyright 2019 The Matrix.org Foundation C.I.C.
#


+ 0
- 1
synapse/events/third_party_rules.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2019 The Matrix.org Foundation C.I.C.
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/events/utils.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2014-2016 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/events/validator.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2014-2016 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/federation/__init__.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2014-2016 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/federation/federation_base.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2015, 2016 OpenMarket Ltd
# Copyright 2020 The Matrix.org Foundation C.I.C.
#


+ 0
- 1
synapse/federation/federation_client.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2015, 2016 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/federation/federation_server.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2015, 2016 OpenMarket Ltd
# Copyright 2018 New Vector Ltd
# Copyright 2019 Matrix.org Federation C.I.C


+ 0
- 1
synapse/federation/persistence.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2014-2016 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/federation/send_queue.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2014-2016 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


+ 0
- 1
synapse/federation/sender/__init__.py View File

@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2019 New Vector Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");


Some files were not shown because too many files changed in this diff

Loading…
Cancel
Save