From e47b811f8b38af22e180e71ac4cd286891b00875 Mon Sep 17 00:00:00 2001 From: rdimaio Date: Mon, 18 Mar 2024 17:14:56 +0100 Subject: [PATCH] Testing: Remove utf-8 declarations; #6538 UTF-8 is the default source encoding in Python 3. Declaring it is unncessary, unless Python 2 is also supported. See also: - https://peps.python.org/pep-3120/ - https://docs.python.org/3/howto/unicode.html#python-s-unicode-support - https://stackoverflow.com/questions/14083111/should-i-use-encoding-declaration-in-python-3 --- etc/docker/dev/configure_qbittorrent.py | 1 - lib/rucio/__init__.py | 1 - lib/rucio/alembicrevision.py | 1 - lib/rucio/api/__init__.py | 1 - lib/rucio/api/account.py | 1 - lib/rucio/api/account_limit.py | 1 - lib/rucio/api/authentication.py | 1 - lib/rucio/api/config.py | 1 - lib/rucio/api/credential.py | 1 - lib/rucio/api/did.py | 1 - lib/rucio/api/dirac.py | 1 - lib/rucio/api/exporter.py | 1 - lib/rucio/api/heartbeat.py | 1 - lib/rucio/api/identity.py | 1 - lib/rucio/api/importer.py | 1 - lib/rucio/api/lifetime_exception.py | 1 - lib/rucio/api/lock.py | 1 - lib/rucio/api/meta_conventions.py | 1 - lib/rucio/api/permission.py | 1 - lib/rucio/api/quarantined_replica.py | 1 - lib/rucio/api/replica.py | 1 - lib/rucio/api/request.py | 1 - lib/rucio/api/rse.py | 1 - lib/rucio/api/rule.py | 1 - lib/rucio/api/scope.py | 1 - lib/rucio/api/subscription.py | 1 - lib/rucio/api/vo.py | 1 - lib/rucio/client/__init__.py | 1 - lib/rucio/client/accountclient.py | 1 - lib/rucio/client/accountlimitclient.py | 1 - lib/rucio/client/baseclient.py | 1 - lib/rucio/client/client.py | 1 - lib/rucio/client/configclient.py | 1 - lib/rucio/client/credentialclient.py | 1 - lib/rucio/client/didclient.py | 1 - lib/rucio/client/diracclient.py | 1 - lib/rucio/client/downloadclient.py | 1 - lib/rucio/client/exportclient.py | 1 - lib/rucio/client/fileclient.py | 1 - lib/rucio/client/importclient.py | 1 - lib/rucio/client/lifetimeclient.py | 1 - lib/rucio/client/lockclient.py | 1 - lib/rucio/client/metaconventionsclient.py | 1 - lib/rucio/client/pingclient.py | 1 - lib/rucio/client/replicaclient.py | 1 - lib/rucio/client/requestclient.py | 1 - lib/rucio/client/rseclient.py | 1 - lib/rucio/client/ruleclient.py | 1 - lib/rucio/client/scopeclient.py | 1 - lib/rucio/client/subscriptionclient.py | 1 - lib/rucio/client/touchclient.py | 1 - lib/rucio/client/uploadclient.py | 1 - lib/rucio/common/__init__.py | 1 - lib/rucio/common/cache.py | 1 - lib/rucio/common/config.py | 1 - lib/rucio/common/constants.py | 1 - lib/rucio/common/constraints.py | 1 - lib/rucio/common/didtype.py | 1 - lib/rucio/common/dumper/__init__.py | 1 - lib/rucio/common/dumper/consistency.py | 1 - lib/rucio/common/dumper/data_models.py | 1 - lib/rucio/common/dumper/path_parsing.py | 1 - lib/rucio/common/exception.py | 1 - lib/rucio/common/extra.py | 1 - lib/rucio/common/logging.py | 1 - lib/rucio/common/pcache.py | 1 - lib/rucio/common/plugins.py | 1 - lib/rucio/common/policy.py | 1 - lib/rucio/common/schema/__init__.py | 1 - lib/rucio/common/schema/atlas.py | 1 - lib/rucio/common/schema/belleii.py | 1 - lib/rucio/common/schema/cms.py | 1 - lib/rucio/common/schema/domatpc.py | 1 - lib/rucio/common/schema/escape.py | 1 - lib/rucio/common/schema/generic.py | 1 - lib/rucio/common/schema/generic_multi_vo.py | 1 - lib/rucio/common/schema/icecube.py | 1 - lib/rucio/common/schema/lsst.py | 1 - lib/rucio/common/stomp_utils.py | 1 - lib/rucio/common/stopwatch.py | 1 - lib/rucio/common/test_rucio_server.py | 1 - lib/rucio/common/types.py | 1 - lib/rucio/common/utils.py | 1 - lib/rucio/core/__init__.py | 1 - lib/rucio/core/account.py | 1 - lib/rucio/core/account_counter.py | 1 - lib/rucio/core/account_limit.py | 1 - lib/rucio/core/authentication.py | 1 - lib/rucio/core/config.py | 1 - lib/rucio/core/credential.py | 1 - lib/rucio/core/did.py | 1 - lib/rucio/core/did_meta_plugins/__init__.py | 1 - lib/rucio/core/did_meta_plugins/did_column_meta.py | 1 - lib/rucio/core/did_meta_plugins/did_meta_plugin_interface.py | 1 - lib/rucio/core/did_meta_plugins/filter_engine.py | 1 - lib/rucio/core/did_meta_plugins/json_meta.py | 1 - lib/rucio/core/did_meta_plugins/mongo_meta.py | 1 - lib/rucio/core/did_meta_plugins/postgres_meta.py | 1 - lib/rucio/core/dirac.py | 1 - lib/rucio/core/distance.py | 1 - lib/rucio/core/exporter.py | 1 - lib/rucio/core/heartbeat.py | 1 - lib/rucio/core/identity.py | 1 - lib/rucio/core/importer.py | 1 - lib/rucio/core/lifetime_exception.py | 1 - lib/rucio/core/lock.py | 1 - lib/rucio/core/message.py | 1 - lib/rucio/core/meta_conventions.py | 1 - lib/rucio/core/monitor.py | 1 - lib/rucio/core/naming_convention.py | 1 - lib/rucio/core/nongrid_trace.py | 1 - lib/rucio/core/oidc.py | 1 - lib/rucio/core/permission/__init__.py | 1 - lib/rucio/core/permission/atlas.py | 1 - lib/rucio/core/permission/belleii.py | 1 - lib/rucio/core/permission/cms.py | 1 - lib/rucio/core/permission/escape.py | 1 - lib/rucio/core/permission/generic.py | 1 - lib/rucio/core/permission/generic_multi_vo.py | 1 - lib/rucio/core/quarantined_replica.py | 1 - lib/rucio/core/replica.py | 1 - lib/rucio/core/replica_sorter.py | 1 - lib/rucio/core/request.py | 1 - lib/rucio/core/rse.py | 1 - lib/rucio/core/rse_counter.py | 1 - lib/rucio/core/rse_expression_parser.py | 1 - lib/rucio/core/rse_selector.py | 1 - lib/rucio/core/rule.py | 1 - lib/rucio/core/rule_grouping.py | 1 - lib/rucio/core/scope.py | 1 - lib/rucio/core/subscription.py | 1 - lib/rucio/core/topology.py | 1 - lib/rucio/core/trace.py | 1 - lib/rucio/core/transfer.py | 1 - lib/rucio/core/vo.py | 1 - lib/rucio/core/volatile_replica.py | 1 - lib/rucio/daemons/__init__.py | 1 - lib/rucio/daemons/abacus/__init__.py | 1 - lib/rucio/daemons/abacus/account.py | 1 - lib/rucio/daemons/abacus/collection_replica.py | 1 - lib/rucio/daemons/abacus/rse.py | 1 - lib/rucio/daemons/atropos/__init__.py | 1 - lib/rucio/daemons/atropos/atropos.py | 1 - lib/rucio/daemons/auditor/__init__.py | 1 - lib/rucio/daemons/auditor/hdfs.py | 1 - lib/rucio/daemons/auditor/srmdumps.py | 1 - lib/rucio/daemons/automatix/__init__.py | 1 - lib/rucio/daemons/automatix/automatix.py | 1 - lib/rucio/daemons/badreplicas/__init__.py | 1 - lib/rucio/daemons/badreplicas/minos.py | 1 - lib/rucio/daemons/badreplicas/minos_temporary_expiration.py | 1 - lib/rucio/daemons/badreplicas/necromancer.py | 1 - lib/rucio/daemons/bb8/__init__.py | 1 - lib/rucio/daemons/bb8/bb8.py | 1 - lib/rucio/daemons/bb8/common.py | 1 - lib/rucio/daemons/bb8/nuclei_background_rebalance.py | 1 - lib/rucio/daemons/bb8/t2_background_rebalance.py | 1 - lib/rucio/daemons/c3po/__init__.py | 1 - lib/rucio/daemons/c3po/algorithms/__init__.py | 1 - lib/rucio/daemons/c3po/algorithms/simple.py | 1 - lib/rucio/daemons/c3po/algorithms/t2_free_space.py | 1 - lib/rucio/daemons/c3po/algorithms/t2_free_space_only_pop.py | 1 - .../c3po/algorithms/t2_free_space_only_pop_with_network.py | 1 - lib/rucio/daemons/c3po/c3po.py | 1 - lib/rucio/daemons/c3po/collectors/__init__.py | 1 - lib/rucio/daemons/c3po/collectors/agis.py | 1 - lib/rucio/daemons/c3po/collectors/free_space.py | 1 - lib/rucio/daemons/c3po/collectors/jedi_did.py | 1 - lib/rucio/daemons/c3po/collectors/mock_did.py | 1 - lib/rucio/daemons/c3po/collectors/network_metrics.py | 1 - lib/rucio/daemons/c3po/collectors/workload.py | 1 - lib/rucio/daemons/c3po/utils/__init__.py | 1 - lib/rucio/daemons/c3po/utils/dataset_cache.py | 1 - lib/rucio/daemons/c3po/utils/expiring_dataset_cache.py | 1 - lib/rucio/daemons/c3po/utils/expiring_list.py | 1 - lib/rucio/daemons/c3po/utils/popularity.py | 1 - lib/rucio/daemons/c3po/utils/timeseries.py | 1 - lib/rucio/daemons/common.py | 1 - lib/rucio/daemons/conveyor/__init__.py | 1 - lib/rucio/daemons/conveyor/common.py | 1 - lib/rucio/daemons/conveyor/finisher.py | 1 - lib/rucio/daemons/conveyor/poller.py | 1 - lib/rucio/daemons/conveyor/preparer.py | 1 - lib/rucio/daemons/conveyor/receiver.py | 1 - lib/rucio/daemons/conveyor/stager.py | 1 - lib/rucio/daemons/conveyor/submitter.py | 1 - lib/rucio/daemons/conveyor/throttler.py | 1 - lib/rucio/daemons/follower/__init__.py | 1 - lib/rucio/daemons/follower/follower.py | 1 - lib/rucio/daemons/hermes/__init__.py | 1 - lib/rucio/daemons/hermes/hermes.py | 1 - lib/rucio/daemons/judge/__init__.py | 1 - lib/rucio/daemons/judge/cleaner.py | 1 - lib/rucio/daemons/judge/evaluator.py | 1 - lib/rucio/daemons/judge/injector.py | 1 - lib/rucio/daemons/judge/repairer.py | 1 - lib/rucio/daemons/oauthmanager/__init__.py | 1 - lib/rucio/daemons/oauthmanager/oauthmanager.py | 1 - lib/rucio/daemons/reaper/__init__.py | 1 - lib/rucio/daemons/reaper/dark_reaper.py | 1 - lib/rucio/daemons/reaper/reaper.py | 1 - lib/rucio/daemons/replicarecoverer/__init__.py | 1 - .../daemons/replicarecoverer/suspicious_replica_recoverer.py | 1 - lib/rucio/daemons/rsedecommissioner/__init__.py | 1 - lib/rucio/daemons/rsedecommissioner/config.py | 1 - lib/rucio/daemons/rsedecommissioner/profiles/__init__.py | 1 - lib/rucio/daemons/rsedecommissioner/profiles/atlas.py | 1 - lib/rucio/daemons/rsedecommissioner/profiles/generic.py | 1 - lib/rucio/daemons/rsedecommissioner/profiles/types.py | 1 - lib/rucio/daemons/rsedecommissioner/rse_decommissioner.py | 1 - lib/rucio/daemons/storage/__init__.py | 1 - lib/rucio/daemons/storage/consistency/__init__.py | 1 - lib/rucio/daemons/storage/consistency/actions.py | 1 - lib/rucio/daemons/tracer/__init__.py | 1 - lib/rucio/daemons/tracer/kronos.py | 1 - lib/rucio/daemons/transmogrifier/__init__.py | 1 - lib/rucio/daemons/transmogrifier/transmogrifier.py | 1 - lib/rucio/daemons/undertaker/__init__.py | 1 - lib/rucio/daemons/undertaker/undertaker.py | 1 - lib/rucio/db/__init__.py | 1 - lib/rucio/db/sqla/__init__.py | 1 - lib/rucio/db/sqla/constants.py | 1 - lib/rucio/db/sqla/migrate_repo/__init__.py | 1 - lib/rucio/db/sqla/migrate_repo/env.py | 1 - .../01eaf73ab656_add_new_rule_notification_state_progress.py | 1 - .../migrate_repo/versions/0437a40dbfd1_add_eol_at_in_rules.py | 1 - .../versions/0f1adb7a599a_create_transfer_hops_table.py | 1 - .../versions/102efcf145f4_added_stuck_at_column_to_rules.py | 1 - .../versions/13d4f70c66a9_introduce_transfer_limits.py | 1 - .../versions/140fef722e91_cleanup_distances_table.py | 1 - .../versions/14ec5aeb64cf_add_request_external_host.py | 1 - .../versions/156fb5b5a14_add_request_type_to_requests_idx.py | 1 - .../1677d4d803c8_split_rse_availability_into_multiple.py | 1 - .../versions/16a0aca82e12_create_index_on_table_replicas_path.py | 1 - .../versions/1803333ac20f_adding_provenance_and_phys_group.py | 1 - .../versions/1a29d6a9504c_add_didtype_chck_to_requests.py | 1 - .../versions/1a80adff031a_create_index_on_rules_hist_recent.py | 1 - .../versions/1c45d9730ca6_increase_identity_length.py | 1 - .../versions/1d1215494e95_add_quarantined_replicas_table.py | 1 - .../1d96f484df21_asynchronous_rules_and_rule_approval.py | 1 - .../versions/1f46c5f240ac_add_bytes_column_to_bad_replicas.py | 1 - .../versions/1fc15ab60d43_add_message_history_table.py | 1 - .../versions/2190e703eb6e_move_rse_settings_to_rse_attributes.py | 1 - .../21d6b9dc9961_add_mismatch_scheme_state_to_requests.py | 1 - .../22cf51430c78_add_availability_column_to_table_rses.py | 1 - .../migrate_repo/versions/22d887e4ec0a_create_sources_table.py | 1 - .../25821a8a45a3_remove_unique_constraint_on_requests.py | 1 - .../versions/25fc855625cf_added_unique_constraint_to_rules.py | 1 - .../versions/269fee20dee9_add_repair_cnt_to_locks.py | 1 - .../271a46ea6244_add_ignore_availability_column_to_rules.py | 1 - .../versions/277b5fbb41d3_switch_heartbeats_executable.py | 1 - .../27e3a68927fb_remove_replicas_tombstone_and_replicas_.py | 1 - .../migrate_repo/versions/2854cd9e168_added_rule_id_column.py | 1 - .../versions/295289b5a800_processed_by_and__at_in_requests.py | 1 - .../2962ece31cf4_add_nbaccesses_column_in_the_did_table.py | 1 - .../versions/2af3291ec4c_added_replicas_history_table.py | 1 - .../2b69addda658_add_columns_for_third_party_copy_read_.py | 1 - .../sqla/migrate_repo/versions/2b8e7bcb4783_add_config_table.py | 1 - .../versions/2ba5229cb54c_add_submitted_at_to_requests_table.py | 1 - .../2cbee484dcf9_added_column_volume_to_rse_transfer_.py | 1 - .../2edee4a83846_add_source_to_requests_and_requests_.py | 1 - .../sqla/migrate_repo/versions/2eef46be23d4_change_tokens_pk.py | 1 - .../versions/2f648fc909f3_index_in_rule_history_on_scope_name.py | 1 - .../3082b8cef557_add_naming_convention_table_and_closed_.py | 1 - ...a38b6434e_add_index_on_service_column_in_the_message_table.py | 1 - .../versions/3152492b110b_added_staging_area_column.py | 1 - .../versions/32c7d2783f7e_create_bad_replicas_table.py | 1 - .../versions/3345511706b8_replicas_table_pk_definition_is_in_.py | 1 - .../versions/35ef10d1e11b_change_index_on_table_requests.py | 1 - .../versions/379a19b5332d_create_rse_limits_table.py | 1 - .../versions/384b96aa0f60_created_rule_history_tables.py | 1 - .../migrate_repo/versions/3ac1660a1a72_extend_distance_table.py | 1 - .../3ad36e2268b0_create_collection_replicas_updates_table.py | 1 - .../versions/3c9df354071b_extend_waiting_request_state.py | 1 - .../3d9813fab443_add_a_new_state_lost_in_badfilesstatus.py | 1 - .../40ad39ce3160_add_transferred_at_to_requests_table.py | 1 - .../versions/4207be2fd914_add_notification_column_to_rules.py | 1 - .../42db2617c364_create_index_on_requests_external_id.py | 1 - .../436827b13f82_added_column_activity_to_table_requests.py | 1 - .../44278720f774_update_requests_typ_sta_upd_idx_index.py | 1 - .../versions/45378a1e76a8_create_collection_replica_table.py | 1 - .../versions/469d262be19_removing_created_at_index.py | 1 - .../migrate_repo/versions/4783c1f49cb4_create_distance_table.py | 1 - .../versions/49a21b4d4357_create_index_on_table_tokens.py | 1 - .../4a2cbedda8b9_add_source_replica_expression_column_to_.py | 1 - .../4a7182d9578b_added_bytes_length_accessed_at_columns.py | 1 - .../versions/4bab9edd01fc_create_index_on_requests_rule_id.py | 1 - .../migrate_repo/versions/4c3a4acfe006_new_attr_account_table.py | 1 - .../versions/4cf0a2e127d4_adding_transient_metadata.py | 1 - .../migrate_repo/versions/4df2c5ddabc0_remove_temporary_dids.py | 1 - .../migrate_repo/versions/50280c53117c_add_qos_class_to_rse.py | 1 - .../versions/52153819589c_add_rse_id_to_replicas_table.py | 1 - .../versions/52fd9f4916fa_added_activity_to_rules.py | 1 - .../53b479c3cb0f_fix_did_meta_table_missing_updated_at_.py | 1 - .../versions/5673b4b6e843_add_wfms_metadata_to_rule_tables.py | 1 - .../versions/575767d9f89_added_source_history_table.py | 1 - .../versions/58bff7008037_add_started_at_to_requests.py | 1 - .../versions/58c8b78301ab_rename_callback_to_message.py | 1 - .../versions/5f139f77382a_added_child_rule_id_column.py | 1 - .../migrate_repo/versions/688ef1840840_adding_did_meta_table.py | 1 - .../6e572a9bfbf3_add_new_split_container_column_to_rules.py | 1 - .../versions/70587619328_add_comment_column_for_subscriptions.py | 1 - .../versions/739064d31565_remove_history_table_pks.py | 1 - .../7541902bf173_add_didsfollowed_and_followevents_table.py | 1 - .../versions/7ec22226cdbf_new_replica_state_for_temporary_.py | 1 - .../versions/810a41685bc1_added_columns_rse_transfer_limits.py | 1 - .../versions/83f991c63a93_correct_rse_expression_length.py | 1 - .../8523998e2e76_increase_size_of_extended_attributes_.py | 1 - .../8ea9122275b1_adding_missing_function_based_indices.py | 1 - .../versions/90f47792bb76_add_clob_payload_to_messages.py | 1 - .../914b8f02df38_new_table_for_lifetime_model_exceptions.py | 1 - .../migrate_repo/versions/94a5961ddbf2_add_estimator_columns.py | 1 - .../migrate_repo/versions/9a1b149a2044_add_saml_identity_type.py | 1 - .../db/sqla/migrate_repo/versions/9a45bc4ea66d_add_vp_table.py | 1 - .../db/sqla/migrate_repo/versions/9eb936a81eb1_true_is_true.py | 1 - .../migrate_repo/versions/a08fa8de1545_transfer_stats_table.py | 1 - .../versions/a118956323f8_added_vo_table_and_vo_col_to_rse.py | 1 - .../versions/a193a275255c_add_status_column_in_messages.py | 1 - lib/rucio/db/sqla/migrate_repo/versions/a5f6f6e928a7_1_7_0.py | 1 - .../versions/a616581ee47_added_columns_to_table_requests.py | 1 - .../versions/a6eb23955c28_state_idx_non_functional.py | 1 - .../versions/a74275a1ad30_added_global_quota_table.py | 1 - .../db/sqla/migrate_repo/versions/a93e4e47bda_heartbeats.py | 1 - .../versions/ae2a56fcc89_added_comment_column_to_rules.py | 1 - .../b4293a99f344_added_column_identity_to_table_tokens.py | 1 - .../versions/b7d287de34fd_removal_of_replicastate_source.py | 1 - .../versions/b818052fa670_add_index_to_quarantined_replicas.py | 1 - .../b8caac94d7f0_add_comments_column_for_subscriptions_.py | 1 - .../b96a1c7e1cc4_new_bad_pfns_table_and_bad_replicas_.py | 1 - .../migrate_repo/versions/bb695f45c04_extend_request_state.py | 1 - .../versions/bc68e9946deb_add_staging_timestamps_to_request.py | 1 - .../bf3baa1c1474_correct_pk_and_idx_for_history_tables.py | 1 - .../versions/c0937668555f_add_qos_policy_map_table.py | 1 - .../migrate_repo/versions/c129ccdb2d5_add_lumiblocknr_to_dids.py | 1 - .../ccdbcd48206e_add_did_type_column_index_on_did_meta_.py | 1 - .../versions/cebad904c4dd_new_payload_column_for_heartbeats.py | 1 - .../d1189a09c6e0_oauth2_0_and_jwt_feature_support_adding_.py | 1 - .../versions/d23453595260_extend_request_state_for_preparer.py | 1 - .../versions/d6dceb1de2d_added_purge_column_to_rules.py | 1 - .../d6e2c3b2cf26_remove_third_party_copy_column_from_rse.py | 1 - .../versions/d91002c5841_new_account_limits_table.py | 1 - .../versions/e138c364ebd0_extending_columns_for_filter_and_.py | 1 - .../migrate_repo/versions/e59300c8b179_support_for_archive.py | 1 - .../versions/f1b14a8c2ac1_postgres_use_check_constraints.py | 1 - .../versions/f41ffe206f37_oracle_global_temporary_tables.py | 1 - .../f85a2962b021_adding_transfertool_column_to_requests_.py | 1 - .../versions/fa7a7d78b602_increase_refresh_token_size.py | 1 - .../versions/fb28a95fe288_add_replicas_rse_id_tombstone_idx.py | 1 - .../fe1a65b176c9_set_third_party_copy_read_and_write_.py | 1 - .../fe8ea2fa9788_added_third_party_copy_column_to_rse_.py | 1 - lib/rucio/db/sqla/models.py | 1 - lib/rucio/db/sqla/sautils.py | 1 - lib/rucio/db/sqla/session.py | 1 - lib/rucio/db/sqla/types.py | 1 - lib/rucio/db/sqla/util.py | 1 - lib/rucio/rse/__init__.py | 1 - lib/rucio/rse/protocols/__init__.py | 1 - lib/rucio/rse/protocols/bittorrent.py | 1 - lib/rucio/rse/protocols/cache.py | 1 - lib/rucio/rse/protocols/dummy.py | 1 - lib/rucio/rse/protocols/gfal.py | 1 - lib/rucio/rse/protocols/globus.py | 1 - lib/rucio/rse/protocols/gsiftp.py | 1 - lib/rucio/rse/protocols/http_cache.py | 1 - lib/rucio/rse/protocols/mock.py | 1 - lib/rucio/rse/protocols/ngarc.py | 1 - lib/rucio/rse/protocols/posix.py | 1 - lib/rucio/rse/protocols/protocol.py | 1 - lib/rucio/rse/protocols/rclone.py | 1 - lib/rucio/rse/protocols/rfio.py | 1 - lib/rucio/rse/protocols/srm.py | 1 - lib/rucio/rse/protocols/ssh.py | 1 - lib/rucio/rse/protocols/storm.py | 1 - lib/rucio/rse/protocols/webdav.py | 1 - lib/rucio/rse/protocols/xrootd.py | 1 - lib/rucio/rse/rsemanager.py | 1 - lib/rucio/tests/__init__.py | 1 - lib/rucio/tests/common.py | 1 - lib/rucio/tests/common_server.py | 1 - lib/rucio/transfertool/__init__.py | 1 - lib/rucio/transfertool/bittorrent.py | 1 - lib/rucio/transfertool/bittorrent_driver.py | 1 - lib/rucio/transfertool/bittorrent_driver_qbittorrent.py | 1 - lib/rucio/transfertool/fts3.py | 1 - lib/rucio/transfertool/fts3_plugins.py | 1 - lib/rucio/transfertool/globus.py | 1 - lib/rucio/transfertool/globus_library.py | 1 - lib/rucio/transfertool/mock.py | 1 - lib/rucio/transfertool/transfertool.py | 1 - lib/rucio/version.py | 1 - lib/rucio/web/__init__.py | 1 - lib/rucio/web/rest/__init__.py | 1 - lib/rucio/web/rest/flaskapi/__init__.py | 1 - lib/rucio/web/rest/flaskapi/authenticated_bp.py | 1 - lib/rucio/web/rest/flaskapi/v1/__init__.py | 1 - lib/rucio/web/rest/flaskapi/v1/accountlimits.py | 1 - lib/rucio/web/rest/flaskapi/v1/accounts.py | 1 - lib/rucio/web/rest/flaskapi/v1/archives.py | 1 - lib/rucio/web/rest/flaskapi/v1/auth.py | 1 - lib/rucio/web/rest/flaskapi/v1/common.py | 1 - lib/rucio/web/rest/flaskapi/v1/config.py | 1 - lib/rucio/web/rest/flaskapi/v1/credentials.py | 1 - lib/rucio/web/rest/flaskapi/v1/dids.py | 1 - lib/rucio/web/rest/flaskapi/v1/dirac.py | 1 - lib/rucio/web/rest/flaskapi/v1/export.py | 1 - lib/rucio/web/rest/flaskapi/v1/heartbeats.py | 1 - lib/rucio/web/rest/flaskapi/v1/identities.py | 1 - lib/rucio/web/rest/flaskapi/v1/import.py | 1 - lib/rucio/web/rest/flaskapi/v1/lifetime_exceptions.py | 1 - lib/rucio/web/rest/flaskapi/v1/locks.py | 1 - lib/rucio/web/rest/flaskapi/v1/main.py | 1 - lib/rucio/web/rest/flaskapi/v1/meta_conventions.py | 1 - lib/rucio/web/rest/flaskapi/v1/metrics.py | 1 - lib/rucio/web/rest/flaskapi/v1/nongrid_traces.py | 1 - lib/rucio/web/rest/flaskapi/v1/ping.py | 1 - lib/rucio/web/rest/flaskapi/v1/redirect.py | 1 - lib/rucio/web/rest/flaskapi/v1/replicas.py | 1 - lib/rucio/web/rest/flaskapi/v1/requests.py | 1 - lib/rucio/web/rest/flaskapi/v1/rses.py | 1 - lib/rucio/web/rest/flaskapi/v1/rules.py | 1 - lib/rucio/web/rest/flaskapi/v1/scopes.py | 1 - lib/rucio/web/rest/flaskapi/v1/subscriptions.py | 1 - lib/rucio/web/rest/flaskapi/v1/traces.py | 1 - lib/rucio/web/rest/flaskapi/v1/vos.py | 1 - lib/rucio/web/rest/main.py | 1 - lib/rucio/web/rest/metrics.py | 1 - lib/rucio/web/rest/ping.py | 1 - lib/rucio/web/ui/__init__.py | 1 - lib/rucio/web/ui/flask/__init__.py | 1 - lib/rucio/web/ui/flask/bp.py | 1 - lib/rucio/web/ui/flask/common/__init__.py | 1 - lib/rucio/web/ui/flask/common/utils.py | 1 - lib/rucio/web/ui/flask/main.py | 1 - lib/rucio/web/ui/main.py | 1 - setup_rucio.py | 1 - setup_rucio_client.py | 1 - setup_webui.py | 1 - setuputil.py | 1 - tests/__init__.py | 1 - tests/conftest.py | 1 - tests/inputs/__init__.py | 1 - tests/lfn2pfn_module_test.py | 1 - tests/mocks/__init__.py | 1 - tests/mocks/gfal2.py | 1 - tests/mocks/mock_http_server.py | 1 - tests/rsemgr_api_test.py | 1 - tests/ruciopytest/__init__.py | 1 - tests/ruciopytest/artifacts_plugin.py | 1 - tests/ruciopytest/xdist_noparallel_remote.py | 1 - tests/ruciopytest/xdist_noparallel_scheduler.py | 1 - tests/temp_factories.py | 1 - tests/test_abacus_account.py | 1 - tests/test_abacus_collection_replica.py | 1 - tests/test_abacus_rse.py | 1 - tests/test_account.py | 1 - tests/test_account_limits.py | 1 - tests/test_api_external_representation.py | 1 - tests/test_archive.py | 1 - tests/test_auditor.py | 1 - tests/test_auditor_hdfs.py | 1 - tests/test_auditor_srmdumps.py | 1 - tests/test_authentication.py | 1 - tests/test_automatix.py | 1 - tests/test_bad_replica.py | 1 - tests/test_bb8.py | 1 - tests/test_belleii.py | 1 - tests/test_bin_rucio.py | 1 - tests/test_boolean.py | 1 - tests/test_clients.py | 1 - tests/test_common_types.py | 1 - tests/test_config.py | 1 - tests/test_conveyor.py | 1 - tests/test_conveyor_submitter.py | 1 - tests/test_counter.py | 1 - tests/test_credential.py | 1 - tests/test_curl.py | 1 - tests/test_daemons.py | 1 - tests/test_dataset_replicas.py | 1 - tests/test_db.py | 1 - tests/test_did.py | 1 - tests/test_did_meta_plugins.py | 1 - tests/test_didtype.py | 1 - tests/test_download.py | 1 - tests/test_dumper.py | 1 - tests/test_dumper_consistency.py | 1 - tests/test_dumper_data_model.py | 1 - tests/test_dumper_path_parsing.py | 1 - tests/test_filter_engine.py | 1 - tests/test_heartbeat.py | 1 - tests/test_hermes.py | 1 - tests/test_identity.py | 1 - tests/test_impl_upload_download.py | 1 - tests/test_import_export.py | 1 - tests/test_judge_cleaner.py | 1 - tests/test_judge_evaluator.py | 1 - tests/test_judge_injector.py | 1 - tests/test_judge_repairer.py | 1 - tests/test_lifetime.py | 1 - tests/test_message.py | 1 - tests/test_meta_conventions.py | 1 - tests/test_meta_did.py | 1 - tests/test_module_import.py | 1 - tests/test_monitor.py | 1 - tests/test_multi_vo.py | 1 - tests/test_naming_convention.py | 1 - tests/test_oauthmanager.py | 1 - tests/test_oidc.py | 1 - tests/test_permission.py | 1 - tests/test_pfns.py | 1 - tests/test_ping.py | 1 - tests/test_preparer.py | 1 - tests/test_qos.py | 1 - tests/test_quarantined_replica.py | 1 - tests/test_reaper.py | 1 - tests/test_redirect.py | 1 - tests/test_replica.py | 1 - tests/test_replica_recoverer.py | 1 - tests/test_replica_sorting.py | 1 - tests/test_request.py | 1 - tests/test_root_proxy.py | 1 - tests/test_rse.py | 1 - tests/test_rse_expression_parser.py | 1 - tests/test_rse_lfn2path.py | 1 - tests/test_rse_protocol_gfal2.py | 1 - tests/test_rse_protocol_gfal2_impl.py | 1 - tests/test_rse_protocol_posix.py | 1 - tests/test_rse_protocol_rclone.py | 1 - tests/test_rse_protocol_rsync.py | 1 - tests/test_rse_protocol_srm.py | 1 - tests/test_rse_protocol_ssh.py | 1 - tests/test_rse_protocol_webdav.py | 1 - tests/test_rse_protocol_xrootd.py | 1 - tests/test_rse_selector.py | 1 - tests/test_rucio_server.py | 1 - tests/test_rule.py | 1 - tests/test_schema_cms.py | 1 - tests/test_scope.py | 1 - tests/test_subscription.py | 1 - tests/test_throttler.py | 1 - tests/test_tpc.py | 1 - tests/test_trace.py | 1 - tests/test_transfer.py | 1 - tests/test_transfer_plugins.py | 1 - tests/test_undertaker.py | 1 - tests/test_upload.py | 1 - tests/test_utils.py | 1 - tools/add_header | 1 - tools/bootstrap.py | 1 - tools/bootstrap_tests.py | 1 - tools/convert_database_vo.py | 1 - tools/destroy_database.py | 1 - tools/generate_doc.py | 1 - tools/generate_rest_api_doc.py | 1 - tools/generate_version.py | 1 - tools/github/workflow/grabrelease.py | 1 - tools/github/workflow/set_branch_output_env.py | 1 - tools/github/workflow/util.py | 1 - tools/merge_rucio_configs.py | 1 - tools/monitoring/extract.py | 1 - tools/reset_database.py | 1 - tools/run_pyright/__init__.py | 1 - tools/run_pyright/__main__.py | 1 - tools/run_pyright/compare.py | 1 - tools/run_pyright/generate.py | 1 - tools/run_pyright/models.py | 1 - tools/run_pyright/utils.py | 1 - tools/sync_meta.py | 1 - tools/sync_rses.py | 1 - tools/test/build_images.py | 1 - tools/test/donkeyrider.py | 1 - tools/test/ignoretool.py | 1 - tools/test/matrix_parser.py | 1 - tools/test/run_tests.py | 1 - tools/test/votest_helper.py | 1 - tools/update_ui_version.py | 1 - 575 files changed, 575 deletions(-) diff --git a/etc/docker/dev/configure_qbittorrent.py b/etc/docker/dev/configure_qbittorrent.py index 5d16e07f32..b78d878e56 100644 --- a/etc/docker/dev/configure_qbittorrent.py +++ b/etc/docker/dev/configure_qbittorrent.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/__init__.py b/lib/rucio/__init__.py index fc6b269b42..f1f7b50d40 100644 --- a/lib/rucio/__init__.py +++ b/lib/rucio/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/alembicrevision.py b/lib/rucio/alembicrevision.py index 693ad545ac..d29a3e2369 100644 --- a/lib/rucio/alembicrevision.py +++ b/lib/rucio/alembicrevision.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/api/__init__.py b/lib/rucio/api/__init__.py index 06d1c8adf0..23757cf2d7 100644 --- a/lib/rucio/api/__init__.py +++ b/lib/rucio/api/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/api/account.py b/lib/rucio/api/account.py index bd0840963c..40b8d66be0 100644 --- a/lib/rucio/api/account.py +++ b/lib/rucio/api/account.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/api/account_limit.py b/lib/rucio/api/account_limit.py index c0ac708ca4..d7302a7148 100644 --- a/lib/rucio/api/account_limit.py +++ b/lib/rucio/api/account_limit.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/api/authentication.py b/lib/rucio/api/authentication.py index cb8fc68c8a..5df050359b 100644 --- a/lib/rucio/api/authentication.py +++ b/lib/rucio/api/authentication.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/api/config.py b/lib/rucio/api/config.py index 47c9ca490d..f9cf28da2e 100644 --- a/lib/rucio/api/config.py +++ b/lib/rucio/api/config.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/api/credential.py b/lib/rucio/api/credential.py index 4fc5797cce..8915fcfd42 100644 --- a/lib/rucio/api/credential.py +++ b/lib/rucio/api/credential.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/api/did.py b/lib/rucio/api/did.py index 2a6cae7c34..3f3f01a43b 100644 --- a/lib/rucio/api/did.py +++ b/lib/rucio/api/did.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/api/dirac.py b/lib/rucio/api/dirac.py index 219b59ffcc..b9f53e1a7d 100644 --- a/lib/rucio/api/dirac.py +++ b/lib/rucio/api/dirac.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/api/exporter.py b/lib/rucio/api/exporter.py index 8f4477e30f..15566717fa 100644 --- a/lib/rucio/api/exporter.py +++ b/lib/rucio/api/exporter.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/api/heartbeat.py b/lib/rucio/api/heartbeat.py index 1ff9cbaeb5..11cf0e2ccb 100644 --- a/lib/rucio/api/heartbeat.py +++ b/lib/rucio/api/heartbeat.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/api/identity.py b/lib/rucio/api/identity.py index 0271fb0537..db159d34bc 100644 --- a/lib/rucio/api/identity.py +++ b/lib/rucio/api/identity.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/api/importer.py b/lib/rucio/api/importer.py index 05d9b3a788..3fbf5d3f88 100644 --- a/lib/rucio/api/importer.py +++ b/lib/rucio/api/importer.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/api/lifetime_exception.py b/lib/rucio/api/lifetime_exception.py index 5e55b90e84..cefd3cb6db 100644 --- a/lib/rucio/api/lifetime_exception.py +++ b/lib/rucio/api/lifetime_exception.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/api/lock.py b/lib/rucio/api/lock.py index cc08f2a98f..d0f56c5dd7 100644 --- a/lib/rucio/api/lock.py +++ b/lib/rucio/api/lock.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/api/meta_conventions.py b/lib/rucio/api/meta_conventions.py index 18d85810ca..a0216225d9 100644 --- a/lib/rucio/api/meta_conventions.py +++ b/lib/rucio/api/meta_conventions.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/api/permission.py b/lib/rucio/api/permission.py index ddc0bff8bf..62c240df1a 100644 --- a/lib/rucio/api/permission.py +++ b/lib/rucio/api/permission.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/api/quarantined_replica.py b/lib/rucio/api/quarantined_replica.py index 0682526808..2567d69773 100644 --- a/lib/rucio/api/quarantined_replica.py +++ b/lib/rucio/api/quarantined_replica.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/api/replica.py b/lib/rucio/api/replica.py index 7f14c2752e..8d94d40f52 100644 --- a/lib/rucio/api/replica.py +++ b/lib/rucio/api/replica.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/api/request.py b/lib/rucio/api/request.py index 98a229dfd3..4016134dd2 100644 --- a/lib/rucio/api/request.py +++ b/lib/rucio/api/request.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/api/rse.py b/lib/rucio/api/rse.py index 900664d7c0..abeb72de0d 100644 --- a/lib/rucio/api/rse.py +++ b/lib/rucio/api/rse.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/api/rule.py b/lib/rucio/api/rule.py index 1b396bce2e..e0bb4810bd 100644 --- a/lib/rucio/api/rule.py +++ b/lib/rucio/api/rule.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/api/scope.py b/lib/rucio/api/scope.py index 212d617e2b..e35ed2418f 100644 --- a/lib/rucio/api/scope.py +++ b/lib/rucio/api/scope.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/api/subscription.py b/lib/rucio/api/subscription.py index d76074ff94..2e957d418b 100644 --- a/lib/rucio/api/subscription.py +++ b/lib/rucio/api/subscription.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/api/vo.py b/lib/rucio/api/vo.py index 5b4339daf0..5f77bbf98a 100644 --- a/lib/rucio/api/vo.py +++ b/lib/rucio/api/vo.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/client/__init__.py b/lib/rucio/client/__init__.py index bc13e07fb1..1824c5f62c 100644 --- a/lib/rucio/client/__init__.py +++ b/lib/rucio/client/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/client/accountclient.py b/lib/rucio/client/accountclient.py index 3d00792cb9..61687974a4 100644 --- a/lib/rucio/client/accountclient.py +++ b/lib/rucio/client/accountclient.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/client/accountlimitclient.py b/lib/rucio/client/accountlimitclient.py index a8d965e362..4add1e765d 100644 --- a/lib/rucio/client/accountlimitclient.py +++ b/lib/rucio/client/accountlimitclient.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/client/baseclient.py b/lib/rucio/client/baseclient.py index 8b5657bc78..c512625b4c 100644 --- a/lib/rucio/client/baseclient.py +++ b/lib/rucio/client/baseclient.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/client/client.py b/lib/rucio/client/client.py index af908b51e6..c53b5fe569 100644 --- a/lib/rucio/client/client.py +++ b/lib/rucio/client/client.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/client/configclient.py b/lib/rucio/client/configclient.py index c66505c53d..1a76ea77ec 100644 --- a/lib/rucio/client/configclient.py +++ b/lib/rucio/client/configclient.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/client/credentialclient.py b/lib/rucio/client/credentialclient.py index 6275bcfdbe..094a4ae896 100644 --- a/lib/rucio/client/credentialclient.py +++ b/lib/rucio/client/credentialclient.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/client/didclient.py b/lib/rucio/client/didclient.py index a497d39b09..5e463e1ef6 100644 --- a/lib/rucio/client/didclient.py +++ b/lib/rucio/client/didclient.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/client/diracclient.py b/lib/rucio/client/diracclient.py index 2d42559d7e..c89c5d324d 100644 --- a/lib/rucio/client/diracclient.py +++ b/lib/rucio/client/diracclient.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/client/downloadclient.py b/lib/rucio/client/downloadclient.py index ecec0e4b27..2789ea8b2b 100644 --- a/lib/rucio/client/downloadclient.py +++ b/lib/rucio/client/downloadclient.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/client/exportclient.py b/lib/rucio/client/exportclient.py index eb7b328315..59227ff446 100644 --- a/lib/rucio/client/exportclient.py +++ b/lib/rucio/client/exportclient.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/client/fileclient.py b/lib/rucio/client/fileclient.py index cdf07ab136..73de54d8cb 100644 --- a/lib/rucio/client/fileclient.py +++ b/lib/rucio/client/fileclient.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/client/importclient.py b/lib/rucio/client/importclient.py index 990e7c251d..dfa054ae04 100644 --- a/lib/rucio/client/importclient.py +++ b/lib/rucio/client/importclient.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/client/lifetimeclient.py b/lib/rucio/client/lifetimeclient.py index cc6098d0e3..56fabc4dce 100644 --- a/lib/rucio/client/lifetimeclient.py +++ b/lib/rucio/client/lifetimeclient.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/client/lockclient.py b/lib/rucio/client/lockclient.py index a15b388203..d27d1d9cbd 100644 --- a/lib/rucio/client/lockclient.py +++ b/lib/rucio/client/lockclient.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/client/metaconventionsclient.py b/lib/rucio/client/metaconventionsclient.py index 7b7e213f62..f0f6ff3ad2 100644 --- a/lib/rucio/client/metaconventionsclient.py +++ b/lib/rucio/client/metaconventionsclient.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/client/pingclient.py b/lib/rucio/client/pingclient.py index 57012095d2..a1b4ca1f94 100644 --- a/lib/rucio/client/pingclient.py +++ b/lib/rucio/client/pingclient.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/client/replicaclient.py b/lib/rucio/client/replicaclient.py index 41754a593d..4055423d12 100644 --- a/lib/rucio/client/replicaclient.py +++ b/lib/rucio/client/replicaclient.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/client/requestclient.py b/lib/rucio/client/requestclient.py index 7f5a880794..d5a93fbbcb 100644 --- a/lib/rucio/client/requestclient.py +++ b/lib/rucio/client/requestclient.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/client/rseclient.py b/lib/rucio/client/rseclient.py index efeefd729a..373c5baee3 100644 --- a/lib/rucio/client/rseclient.py +++ b/lib/rucio/client/rseclient.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/client/ruleclient.py b/lib/rucio/client/ruleclient.py index 7ad4d19617..986a76461f 100644 --- a/lib/rucio/client/ruleclient.py +++ b/lib/rucio/client/ruleclient.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/client/scopeclient.py b/lib/rucio/client/scopeclient.py index 9d497ad5cd..46cb015baf 100644 --- a/lib/rucio/client/scopeclient.py +++ b/lib/rucio/client/scopeclient.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/client/subscriptionclient.py b/lib/rucio/client/subscriptionclient.py index 46c8ceb63e..954c04afcb 100644 --- a/lib/rucio/client/subscriptionclient.py +++ b/lib/rucio/client/subscriptionclient.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/client/touchclient.py b/lib/rucio/client/touchclient.py index 7eb6f78550..9a85624503 100644 --- a/lib/rucio/client/touchclient.py +++ b/lib/rucio/client/touchclient.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/client/uploadclient.py b/lib/rucio/client/uploadclient.py index 8b83fa3858..5de2984430 100644 --- a/lib/rucio/client/uploadclient.py +++ b/lib/rucio/client/uploadclient.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/common/__init__.py b/lib/rucio/common/__init__.py index 06d1c8adf0..23757cf2d7 100644 --- a/lib/rucio/common/__init__.py +++ b/lib/rucio/common/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/common/cache.py b/lib/rucio/common/cache.py index cf0d4d8eb2..1abd8f8bae 100644 --- a/lib/rucio/common/cache.py +++ b/lib/rucio/common/cache.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/common/config.py b/lib/rucio/common/config.py index bf163d921a..df44fc9f85 100644 --- a/lib/rucio/common/config.py +++ b/lib/rucio/common/config.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/common/constants.py b/lib/rucio/common/constants.py index aab2ae14d0..9f5ebadbe2 100644 --- a/lib/rucio/common/constants.py +++ b/lib/rucio/common/constants.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/common/constraints.py b/lib/rucio/common/constraints.py index 73dc4bb439..750ac76155 100644 --- a/lib/rucio/common/constraints.py +++ b/lib/rucio/common/constraints.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/common/didtype.py b/lib/rucio/common/didtype.py index 78a36282f8..ffb52a6797 100755 --- a/lib/rucio/common/didtype.py +++ b/lib/rucio/common/didtype.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/common/dumper/__init__.py b/lib/rucio/common/dumper/__init__.py index c3cf65b586..4e530480e5 100644 --- a/lib/rucio/common/dumper/__init__.py +++ b/lib/rucio/common/dumper/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/common/dumper/consistency.py b/lib/rucio/common/dumper/consistency.py index 54b1f01404..6e35755e44 100644 --- a/lib/rucio/common/dumper/consistency.py +++ b/lib/rucio/common/dumper/consistency.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/common/dumper/data_models.py b/lib/rucio/common/dumper/data_models.py index 69320406a8..90e68fc7c4 100644 --- a/lib/rucio/common/dumper/data_models.py +++ b/lib/rucio/common/dumper/data_models.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/common/dumper/path_parsing.py b/lib/rucio/common/dumper/path_parsing.py index 89b939b845..187ac51b46 100644 --- a/lib/rucio/common/dumper/path_parsing.py +++ b/lib/rucio/common/dumper/path_parsing.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/common/exception.py b/lib/rucio/common/exception.py index d975fb3b7e..a1776f0d0f 100644 --- a/lib/rucio/common/exception.py +++ b/lib/rucio/common/exception.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/common/extra.py b/lib/rucio/common/extra.py index f8390e3a65..27fd3f997e 100644 --- a/lib/rucio/common/extra.py +++ b/lib/rucio/common/extra.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/common/logging.py b/lib/rucio/common/logging.py index da578dbc0a..9813e906b9 100644 --- a/lib/rucio/common/logging.py +++ b/lib/rucio/common/logging.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/common/pcache.py b/lib/rucio/common/pcache.py index 67fb147605..b937d2dd02 100644 --- a/lib/rucio/common/pcache.py +++ b/lib/rucio/common/pcache.py @@ -1,5 +1,4 @@ #!/usr/bin/env python -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/common/plugins.py b/lib/rucio/common/plugins.py index d513002814..e3a5c54146 100644 --- a/lib/rucio/common/plugins.py +++ b/lib/rucio/common/plugins.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/common/policy.py b/lib/rucio/common/policy.py index 5c996183f3..e84e05834f 100644 --- a/lib/rucio/common/policy.py +++ b/lib/rucio/common/policy.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/common/schema/__init__.py b/lib/rucio/common/schema/__init__.py index 2ae769dcc3..31d383f05f 100644 --- a/lib/rucio/common/schema/__init__.py +++ b/lib/rucio/common/schema/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/common/schema/atlas.py b/lib/rucio/common/schema/atlas.py index 5f5a6fb0f2..1adf83db18 100644 --- a/lib/rucio/common/schema/atlas.py +++ b/lib/rucio/common/schema/atlas.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/common/schema/belleii.py b/lib/rucio/common/schema/belleii.py index ca86240c06..8094b57117 100644 --- a/lib/rucio/common/schema/belleii.py +++ b/lib/rucio/common/schema/belleii.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/common/schema/cms.py b/lib/rucio/common/schema/cms.py index 15ddade0a3..3bdbeb15d9 100644 --- a/lib/rucio/common/schema/cms.py +++ b/lib/rucio/common/schema/cms.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/common/schema/domatpc.py b/lib/rucio/common/schema/domatpc.py index 02fade7827..8714f4e6c1 100644 --- a/lib/rucio/common/schema/domatpc.py +++ b/lib/rucio/common/schema/domatpc.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/common/schema/escape.py b/lib/rucio/common/schema/escape.py index d267dc3817..faab5fe09c 100644 --- a/lib/rucio/common/schema/escape.py +++ b/lib/rucio/common/schema/escape.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/common/schema/generic.py b/lib/rucio/common/schema/generic.py index 6afa5d6172..c4be91f1ff 100644 --- a/lib/rucio/common/schema/generic.py +++ b/lib/rucio/common/schema/generic.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/common/schema/generic_multi_vo.py b/lib/rucio/common/schema/generic_multi_vo.py index 3560611267..1fe84c4bf7 100644 --- a/lib/rucio/common/schema/generic_multi_vo.py +++ b/lib/rucio/common/schema/generic_multi_vo.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/common/schema/icecube.py b/lib/rucio/common/schema/icecube.py index be3f289cba..72c4b42c62 100644 --- a/lib/rucio/common/schema/icecube.py +++ b/lib/rucio/common/schema/icecube.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/common/schema/lsst.py b/lib/rucio/common/schema/lsst.py index 1a133a132b..71f3806d55 100644 --- a/lib/rucio/common/schema/lsst.py +++ b/lib/rucio/common/schema/lsst.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/common/stomp_utils.py b/lib/rucio/common/stomp_utils.py index 83511e382d..7334fe61b7 100644 --- a/lib/rucio/common/stomp_utils.py +++ b/lib/rucio/common/stomp_utils.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/common/stopwatch.py b/lib/rucio/common/stopwatch.py index 716670737f..f0686d0127 100644 --- a/lib/rucio/common/stopwatch.py +++ b/lib/rucio/common/stopwatch.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/common/test_rucio_server.py b/lib/rucio/common/test_rucio_server.py index 8fbcd1d987..301ebe74ac 100644 --- a/lib/rucio/common/test_rucio_server.py +++ b/lib/rucio/common/test_rucio_server.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/common/types.py b/lib/rucio/common/types.py index 3705d11608..aa3b9a9b8c 100644 --- a/lib/rucio/common/types.py +++ b/lib/rucio/common/types.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/common/utils.py b/lib/rucio/common/utils.py index 4b91fd522c..f68efc84a5 100644 --- a/lib/rucio/common/utils.py +++ b/lib/rucio/common/utils.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/__init__.py b/lib/rucio/core/__init__.py index 06d1c8adf0..23757cf2d7 100644 --- a/lib/rucio/core/__init__.py +++ b/lib/rucio/core/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/account.py b/lib/rucio/core/account.py index 7688dffe52..abfa7c5585 100644 --- a/lib/rucio/core/account.py +++ b/lib/rucio/core/account.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/account_counter.py b/lib/rucio/core/account_counter.py index 1f103278d4..e6aa06410b 100644 --- a/lib/rucio/core/account_counter.py +++ b/lib/rucio/core/account_counter.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/account_limit.py b/lib/rucio/core/account_limit.py index b420589625..ecc49ba9f8 100644 --- a/lib/rucio/core/account_limit.py +++ b/lib/rucio/core/account_limit.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/authentication.py b/lib/rucio/core/authentication.py index 9e97faa5d1..e8a0d6c7e5 100644 --- a/lib/rucio/core/authentication.py +++ b/lib/rucio/core/authentication.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/config.py b/lib/rucio/core/config.py index db3d570265..3d9d22bd19 100644 --- a/lib/rucio/core/config.py +++ b/lib/rucio/core/config.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/credential.py b/lib/rucio/core/credential.py index 51665a8496..129d67d1d6 100644 --- a/lib/rucio/core/credential.py +++ b/lib/rucio/core/credential.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/did.py b/lib/rucio/core/did.py index 031cbc8108..fe5d47b8ff 100644 --- a/lib/rucio/core/did.py +++ b/lib/rucio/core/did.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/did_meta_plugins/__init__.py b/lib/rucio/core/did_meta_plugins/__init__.py index ab8af3296d..ae67539180 100644 --- a/lib/rucio/core/did_meta_plugins/__init__.py +++ b/lib/rucio/core/did_meta_plugins/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/did_meta_plugins/did_column_meta.py b/lib/rucio/core/did_meta_plugins/did_column_meta.py index 02c9a80643..22295675bb 100644 --- a/lib/rucio/core/did_meta_plugins/did_column_meta.py +++ b/lib/rucio/core/did_meta_plugins/did_column_meta.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/did_meta_plugins/did_meta_plugin_interface.py b/lib/rucio/core/did_meta_plugins/did_meta_plugin_interface.py index 88b9043290..862b97b53e 100644 --- a/lib/rucio/core/did_meta_plugins/did_meta_plugin_interface.py +++ b/lib/rucio/core/did_meta_plugins/did_meta_plugin_interface.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/did_meta_plugins/filter_engine.py b/lib/rucio/core/did_meta_plugins/filter_engine.py index db7d534949..bfdf6f5362 100644 --- a/lib/rucio/core/did_meta_plugins/filter_engine.py +++ b/lib/rucio/core/did_meta_plugins/filter_engine.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/did_meta_plugins/json_meta.py b/lib/rucio/core/did_meta_plugins/json_meta.py index 3930c91bf8..81c2b0522b 100644 --- a/lib/rucio/core/did_meta_plugins/json_meta.py +++ b/lib/rucio/core/did_meta_plugins/json_meta.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/did_meta_plugins/mongo_meta.py b/lib/rucio/core/did_meta_plugins/mongo_meta.py index fe21464b5b..55ce01ce92 100644 --- a/lib/rucio/core/did_meta_plugins/mongo_meta.py +++ b/lib/rucio/core/did_meta_plugins/mongo_meta.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/did_meta_plugins/postgres_meta.py b/lib/rucio/core/did_meta_plugins/postgres_meta.py index a071332d3b..07f490f9a3 100644 --- a/lib/rucio/core/did_meta_plugins/postgres_meta.py +++ b/lib/rucio/core/did_meta_plugins/postgres_meta.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/dirac.py b/lib/rucio/core/dirac.py index 77bc43877c..8d793ee1bb 100644 --- a/lib/rucio/core/dirac.py +++ b/lib/rucio/core/dirac.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/distance.py b/lib/rucio/core/distance.py index 918376e0bd..ba8bfc615e 100644 --- a/lib/rucio/core/distance.py +++ b/lib/rucio/core/distance.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/exporter.py b/lib/rucio/core/exporter.py index c26fb7361b..7fef5f5dec 100644 --- a/lib/rucio/core/exporter.py +++ b/lib/rucio/core/exporter.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/heartbeat.py b/lib/rucio/core/heartbeat.py index 444d50d76e..0f6d47a9fa 100644 --- a/lib/rucio/core/heartbeat.py +++ b/lib/rucio/core/heartbeat.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/identity.py b/lib/rucio/core/identity.py index e3da92a0eb..ef871bfd9a 100644 --- a/lib/rucio/core/identity.py +++ b/lib/rucio/core/identity.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/importer.py b/lib/rucio/core/importer.py index 63e741420f..cd1b70e54f 100644 --- a/lib/rucio/core/importer.py +++ b/lib/rucio/core/importer.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/lifetime_exception.py b/lib/rucio/core/lifetime_exception.py index 4fd7064da6..566fc42eaf 100644 --- a/lib/rucio/core/lifetime_exception.py +++ b/lib/rucio/core/lifetime_exception.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/lock.py b/lib/rucio/core/lock.py index cc1c27287e..c582eb4c99 100644 --- a/lib/rucio/core/lock.py +++ b/lib/rucio/core/lock.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/message.py b/lib/rucio/core/message.py index fb5a00b84b..1729d022d4 100644 --- a/lib/rucio/core/message.py +++ b/lib/rucio/core/message.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/meta_conventions.py b/lib/rucio/core/meta_conventions.py index 14beb65a18..807d843171 100644 --- a/lib/rucio/core/meta_conventions.py +++ b/lib/rucio/core/meta_conventions.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/monitor.py b/lib/rucio/core/monitor.py index 447f2b4920..03482ac27d 100644 --- a/lib/rucio/core/monitor.py +++ b/lib/rucio/core/monitor.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/naming_convention.py b/lib/rucio/core/naming_convention.py index d0a82e51f9..ac6d44dc96 100644 --- a/lib/rucio/core/naming_convention.py +++ b/lib/rucio/core/naming_convention.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/nongrid_trace.py b/lib/rucio/core/nongrid_trace.py index ac7430c19e..35071f9b01 100644 --- a/lib/rucio/core/nongrid_trace.py +++ b/lib/rucio/core/nongrid_trace.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/oidc.py b/lib/rucio/core/oidc.py index d85a0122e8..1c08a3dd0e 100644 --- a/lib/rucio/core/oidc.py +++ b/lib/rucio/core/oidc.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/permission/__init__.py b/lib/rucio/core/permission/__init__.py index 09c80195c9..095188444e 100644 --- a/lib/rucio/core/permission/__init__.py +++ b/lib/rucio/core/permission/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/permission/atlas.py b/lib/rucio/core/permission/atlas.py index 165b5fb7ad..e69a301ef9 100644 --- a/lib/rucio/core/permission/atlas.py +++ b/lib/rucio/core/permission/atlas.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/permission/belleii.py b/lib/rucio/core/permission/belleii.py index 89c8b1ad59..c2ffa7a9d0 100644 --- a/lib/rucio/core/permission/belleii.py +++ b/lib/rucio/core/permission/belleii.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/permission/cms.py b/lib/rucio/core/permission/cms.py index f9799309ea..42e0f00c0a 100644 --- a/lib/rucio/core/permission/cms.py +++ b/lib/rucio/core/permission/cms.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/permission/escape.py b/lib/rucio/core/permission/escape.py index 1f4c63fba2..82eb86b510 100644 --- a/lib/rucio/core/permission/escape.py +++ b/lib/rucio/core/permission/escape.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/permission/generic.py b/lib/rucio/core/permission/generic.py index 7ef601fce5..69c4b2401c 100644 --- a/lib/rucio/core/permission/generic.py +++ b/lib/rucio/core/permission/generic.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/permission/generic_multi_vo.py b/lib/rucio/core/permission/generic_multi_vo.py index 80b7e3f81f..caed89b210 100644 --- a/lib/rucio/core/permission/generic_multi_vo.py +++ b/lib/rucio/core/permission/generic_multi_vo.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/quarantined_replica.py b/lib/rucio/core/quarantined_replica.py index 342f314958..03179df2a7 100644 --- a/lib/rucio/core/quarantined_replica.py +++ b/lib/rucio/core/quarantined_replica.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/replica.py b/lib/rucio/core/replica.py index 8b55cbe444..93f2384605 100644 --- a/lib/rucio/core/replica.py +++ b/lib/rucio/core/replica.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/replica_sorter.py b/lib/rucio/core/replica_sorter.py index 1309e31c0b..033e4b9152 100644 --- a/lib/rucio/core/replica_sorter.py +++ b/lib/rucio/core/replica_sorter.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/request.py b/lib/rucio/core/request.py index c59bdc1d2e..2b41239b84 100644 --- a/lib/rucio/core/request.py +++ b/lib/rucio/core/request.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/rse.py b/lib/rucio/core/rse.py index dd4c6415b9..5d2f7abd13 100644 --- a/lib/rucio/core/rse.py +++ b/lib/rucio/core/rse.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/rse_counter.py b/lib/rucio/core/rse_counter.py index cbedecca25..7b3847cb19 100644 --- a/lib/rucio/core/rse_counter.py +++ b/lib/rucio/core/rse_counter.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/rse_expression_parser.py b/lib/rucio/core/rse_expression_parser.py index b255dbd17d..d44417d8bd 100644 --- a/lib/rucio/core/rse_expression_parser.py +++ b/lib/rucio/core/rse_expression_parser.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/rse_selector.py b/lib/rucio/core/rse_selector.py index 48b123abc8..7c320e90d7 100644 --- a/lib/rucio/core/rse_selector.py +++ b/lib/rucio/core/rse_selector.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/rule.py b/lib/rucio/core/rule.py index e16d5c84f9..49d1f8420a 100644 --- a/lib/rucio/core/rule.py +++ b/lib/rucio/core/rule.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/rule_grouping.py b/lib/rucio/core/rule_grouping.py index 2e7b5615ad..5fa711b924 100644 --- a/lib/rucio/core/rule_grouping.py +++ b/lib/rucio/core/rule_grouping.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/scope.py b/lib/rucio/core/scope.py index d215bf9c49..ec2e5079bc 100644 --- a/lib/rucio/core/scope.py +++ b/lib/rucio/core/scope.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/subscription.py b/lib/rucio/core/subscription.py index 9df8d954c8..0760493be2 100644 --- a/lib/rucio/core/subscription.py +++ b/lib/rucio/core/subscription.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/topology.py b/lib/rucio/core/topology.py index 6192fe7864..56b141f24e 100644 --- a/lib/rucio/core/topology.py +++ b/lib/rucio/core/topology.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/trace.py b/lib/rucio/core/trace.py index 0cd0bc0fd5..1cfa2e18c4 100644 --- a/lib/rucio/core/trace.py +++ b/lib/rucio/core/trace.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/transfer.py b/lib/rucio/core/transfer.py index 927ef7e95f..1854936587 100644 --- a/lib/rucio/core/transfer.py +++ b/lib/rucio/core/transfer.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/vo.py b/lib/rucio/core/vo.py index 6240421090..f2d8a643da 100644 --- a/lib/rucio/core/vo.py +++ b/lib/rucio/core/vo.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/core/volatile_replica.py b/lib/rucio/core/volatile_replica.py index b5c78dd331..ae8d5a71e3 100644 --- a/lib/rucio/core/volatile_replica.py +++ b/lib/rucio/core/volatile_replica.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/__init__.py b/lib/rucio/daemons/__init__.py index 06d1c8adf0..23757cf2d7 100644 --- a/lib/rucio/daemons/__init__.py +++ b/lib/rucio/daemons/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/abacus/__init__.py b/lib/rucio/daemons/abacus/__init__.py index 06d1c8adf0..23757cf2d7 100644 --- a/lib/rucio/daemons/abacus/__init__.py +++ b/lib/rucio/daemons/abacus/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/abacus/account.py b/lib/rucio/daemons/abacus/account.py index 6055188d78..37dcd46c98 100644 --- a/lib/rucio/daemons/abacus/account.py +++ b/lib/rucio/daemons/abacus/account.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/abacus/collection_replica.py b/lib/rucio/daemons/abacus/collection_replica.py index 7af89b0177..906e33e23f 100644 --- a/lib/rucio/daemons/abacus/collection_replica.py +++ b/lib/rucio/daemons/abacus/collection_replica.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/abacus/rse.py b/lib/rucio/daemons/abacus/rse.py index f4fd4f0eeb..0ff4b12d84 100644 --- a/lib/rucio/daemons/abacus/rse.py +++ b/lib/rucio/daemons/abacus/rse.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/atropos/__init__.py b/lib/rucio/daemons/atropos/__init__.py index 06d1c8adf0..23757cf2d7 100644 --- a/lib/rucio/daemons/atropos/__init__.py +++ b/lib/rucio/daemons/atropos/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/atropos/atropos.py b/lib/rucio/daemons/atropos/atropos.py index c51f646b21..21c573ee43 100644 --- a/lib/rucio/daemons/atropos/atropos.py +++ b/lib/rucio/daemons/atropos/atropos.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/auditor/__init__.py b/lib/rucio/daemons/auditor/__init__.py index f08d7bb918..1bde50ac66 100644 --- a/lib/rucio/daemons/auditor/__init__.py +++ b/lib/rucio/daemons/auditor/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/auditor/hdfs.py b/lib/rucio/daemons/auditor/hdfs.py index 44e2075f8a..1c1e26df59 100644 --- a/lib/rucio/daemons/auditor/hdfs.py +++ b/lib/rucio/daemons/auditor/hdfs.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/auditor/srmdumps.py b/lib/rucio/daemons/auditor/srmdumps.py index 42d72a97c0..e87ed06682 100644 --- a/lib/rucio/daemons/auditor/srmdumps.py +++ b/lib/rucio/daemons/auditor/srmdumps.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/automatix/__init__.py b/lib/rucio/daemons/automatix/__init__.py index 06d1c8adf0..23757cf2d7 100644 --- a/lib/rucio/daemons/automatix/__init__.py +++ b/lib/rucio/daemons/automatix/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/automatix/automatix.py b/lib/rucio/daemons/automatix/automatix.py index 7cff2e5432..15b6cc0639 100644 --- a/lib/rucio/daemons/automatix/automatix.py +++ b/lib/rucio/daemons/automatix/automatix.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/badreplicas/__init__.py b/lib/rucio/daemons/badreplicas/__init__.py index 06d1c8adf0..23757cf2d7 100644 --- a/lib/rucio/daemons/badreplicas/__init__.py +++ b/lib/rucio/daemons/badreplicas/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/badreplicas/minos.py b/lib/rucio/daemons/badreplicas/minos.py index 0549b43b2c..b7ddea2827 100644 --- a/lib/rucio/daemons/badreplicas/minos.py +++ b/lib/rucio/daemons/badreplicas/minos.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/badreplicas/minos_temporary_expiration.py b/lib/rucio/daemons/badreplicas/minos_temporary_expiration.py index 4239b93aa5..1a388017b2 100644 --- a/lib/rucio/daemons/badreplicas/minos_temporary_expiration.py +++ b/lib/rucio/daemons/badreplicas/minos_temporary_expiration.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/badreplicas/necromancer.py b/lib/rucio/daemons/badreplicas/necromancer.py index a085dfee8a..c6cd3b5d3d 100644 --- a/lib/rucio/daemons/badreplicas/necromancer.py +++ b/lib/rucio/daemons/badreplicas/necromancer.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/bb8/__init__.py b/lib/rucio/daemons/bb8/__init__.py index 06d1c8adf0..23757cf2d7 100644 --- a/lib/rucio/daemons/bb8/__init__.py +++ b/lib/rucio/daemons/bb8/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/bb8/bb8.py b/lib/rucio/daemons/bb8/bb8.py index b37dd99611..37d03a513b 100644 --- a/lib/rucio/daemons/bb8/bb8.py +++ b/lib/rucio/daemons/bb8/bb8.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/bb8/common.py b/lib/rucio/daemons/bb8/common.py index 913a2a27ce..744f0e606e 100644 --- a/lib/rucio/daemons/bb8/common.py +++ b/lib/rucio/daemons/bb8/common.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/bb8/nuclei_background_rebalance.py b/lib/rucio/daemons/bb8/nuclei_background_rebalance.py index 22bef087f0..e2247549c7 100644 --- a/lib/rucio/daemons/bb8/nuclei_background_rebalance.py +++ b/lib/rucio/daemons/bb8/nuclei_background_rebalance.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/bb8/t2_background_rebalance.py b/lib/rucio/daemons/bb8/t2_background_rebalance.py index efeeffd7ee..14f8746522 100644 --- a/lib/rucio/daemons/bb8/t2_background_rebalance.py +++ b/lib/rucio/daemons/bb8/t2_background_rebalance.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/c3po/__init__.py b/lib/rucio/daemons/c3po/__init__.py index 06d1c8adf0..23757cf2d7 100644 --- a/lib/rucio/daemons/c3po/__init__.py +++ b/lib/rucio/daemons/c3po/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/c3po/algorithms/__init__.py b/lib/rucio/daemons/c3po/algorithms/__init__.py index 06d1c8adf0..23757cf2d7 100644 --- a/lib/rucio/daemons/c3po/algorithms/__init__.py +++ b/lib/rucio/daemons/c3po/algorithms/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/c3po/algorithms/simple.py b/lib/rucio/daemons/c3po/algorithms/simple.py index edc1e814fc..1c48349e80 100644 --- a/lib/rucio/daemons/c3po/algorithms/simple.py +++ b/lib/rucio/daemons/c3po/algorithms/simple.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/c3po/algorithms/t2_free_space.py b/lib/rucio/daemons/c3po/algorithms/t2_free_space.py index f23e64dec0..dcf9f3c856 100644 --- a/lib/rucio/daemons/c3po/algorithms/t2_free_space.py +++ b/lib/rucio/daemons/c3po/algorithms/t2_free_space.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/c3po/algorithms/t2_free_space_only_pop.py b/lib/rucio/daemons/c3po/algorithms/t2_free_space_only_pop.py index c4d6db810a..24f80824d0 100644 --- a/lib/rucio/daemons/c3po/algorithms/t2_free_space_only_pop.py +++ b/lib/rucio/daemons/c3po/algorithms/t2_free_space_only_pop.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/c3po/algorithms/t2_free_space_only_pop_with_network.py b/lib/rucio/daemons/c3po/algorithms/t2_free_space_only_pop_with_network.py index 212e20fb70..ddf643920b 100644 --- a/lib/rucio/daemons/c3po/algorithms/t2_free_space_only_pop_with_network.py +++ b/lib/rucio/daemons/c3po/algorithms/t2_free_space_only_pop_with_network.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/c3po/c3po.py b/lib/rucio/daemons/c3po/c3po.py index 5aca641ab7..88c12069d7 100644 --- a/lib/rucio/daemons/c3po/c3po.py +++ b/lib/rucio/daemons/c3po/c3po.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/c3po/collectors/__init__.py b/lib/rucio/daemons/c3po/collectors/__init__.py index 06d1c8adf0..23757cf2d7 100644 --- a/lib/rucio/daemons/c3po/collectors/__init__.py +++ b/lib/rucio/daemons/c3po/collectors/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/c3po/collectors/agis.py b/lib/rucio/daemons/c3po/collectors/agis.py index 4b03680709..ab8be9a45d 100644 --- a/lib/rucio/daemons/c3po/collectors/agis.py +++ b/lib/rucio/daemons/c3po/collectors/agis.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/c3po/collectors/free_space.py b/lib/rucio/daemons/c3po/collectors/free_space.py index b2ff1c5dcb..3b8db0ea62 100644 --- a/lib/rucio/daemons/c3po/collectors/free_space.py +++ b/lib/rucio/daemons/c3po/collectors/free_space.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/c3po/collectors/jedi_did.py b/lib/rucio/daemons/c3po/collectors/jedi_did.py index 531a258804..cf1a861d2c 100644 --- a/lib/rucio/daemons/c3po/collectors/jedi_did.py +++ b/lib/rucio/daemons/c3po/collectors/jedi_did.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/c3po/collectors/mock_did.py b/lib/rucio/daemons/c3po/collectors/mock_did.py index ed99e5bb61..07a6efe616 100644 --- a/lib/rucio/daemons/c3po/collectors/mock_did.py +++ b/lib/rucio/daemons/c3po/collectors/mock_did.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/c3po/collectors/network_metrics.py b/lib/rucio/daemons/c3po/collectors/network_metrics.py index acecabf986..f62881ee9f 100644 --- a/lib/rucio/daemons/c3po/collectors/network_metrics.py +++ b/lib/rucio/daemons/c3po/collectors/network_metrics.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/c3po/collectors/workload.py b/lib/rucio/daemons/c3po/collectors/workload.py index d19ceadd06..45634eaec4 100644 --- a/lib/rucio/daemons/c3po/collectors/workload.py +++ b/lib/rucio/daemons/c3po/collectors/workload.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/c3po/utils/__init__.py b/lib/rucio/daemons/c3po/utils/__init__.py index 06d1c8adf0..23757cf2d7 100644 --- a/lib/rucio/daemons/c3po/utils/__init__.py +++ b/lib/rucio/daemons/c3po/utils/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/c3po/utils/dataset_cache.py b/lib/rucio/daemons/c3po/utils/dataset_cache.py index 8f02fd1616..f7784a96a4 100644 --- a/lib/rucio/daemons/c3po/utils/dataset_cache.py +++ b/lib/rucio/daemons/c3po/utils/dataset_cache.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/c3po/utils/expiring_dataset_cache.py b/lib/rucio/daemons/c3po/utils/expiring_dataset_cache.py index 4e25bc99c8..532aadce61 100644 --- a/lib/rucio/daemons/c3po/utils/expiring_dataset_cache.py +++ b/lib/rucio/daemons/c3po/utils/expiring_dataset_cache.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/c3po/utils/expiring_list.py b/lib/rucio/daemons/c3po/utils/expiring_list.py index 94bbb68bfd..9663c9e928 100644 --- a/lib/rucio/daemons/c3po/utils/expiring_list.py +++ b/lib/rucio/daemons/c3po/utils/expiring_list.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/c3po/utils/popularity.py b/lib/rucio/daemons/c3po/utils/popularity.py index 75ffa8fa00..20cb006f2f 100644 --- a/lib/rucio/daemons/c3po/utils/popularity.py +++ b/lib/rucio/daemons/c3po/utils/popularity.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/c3po/utils/timeseries.py b/lib/rucio/daemons/c3po/utils/timeseries.py index 147f124566..4c38a652a2 100644 --- a/lib/rucio/daemons/c3po/utils/timeseries.py +++ b/lib/rucio/daemons/c3po/utils/timeseries.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/common.py b/lib/rucio/daemons/common.py index 60883d6a25..f319de995a 100644 --- a/lib/rucio/daemons/common.py +++ b/lib/rucio/daemons/common.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/conveyor/__init__.py b/lib/rucio/daemons/conveyor/__init__.py index 06d1c8adf0..23757cf2d7 100644 --- a/lib/rucio/daemons/conveyor/__init__.py +++ b/lib/rucio/daemons/conveyor/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/conveyor/common.py b/lib/rucio/daemons/conveyor/common.py index bd23218ee5..b359b6fac4 100644 --- a/lib/rucio/daemons/conveyor/common.py +++ b/lib/rucio/daemons/conveyor/common.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/conveyor/finisher.py b/lib/rucio/daemons/conveyor/finisher.py index 1dc3b09195..7d6c3c7e5e 100644 --- a/lib/rucio/daemons/conveyor/finisher.py +++ b/lib/rucio/daemons/conveyor/finisher.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/conveyor/poller.py b/lib/rucio/daemons/conveyor/poller.py index fba63b0775..b725fb158d 100644 --- a/lib/rucio/daemons/conveyor/poller.py +++ b/lib/rucio/daemons/conveyor/poller.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/conveyor/preparer.py b/lib/rucio/daemons/conveyor/preparer.py index 82eeb01109..00d87f9cfe 100644 --- a/lib/rucio/daemons/conveyor/preparer.py +++ b/lib/rucio/daemons/conveyor/preparer.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/conveyor/receiver.py b/lib/rucio/daemons/conveyor/receiver.py index 356bbe8e9c..3d61f89eb4 100644 --- a/lib/rucio/daemons/conveyor/receiver.py +++ b/lib/rucio/daemons/conveyor/receiver.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/conveyor/stager.py b/lib/rucio/daemons/conveyor/stager.py index fd6bbdc0ef..f834b2c5d3 100644 --- a/lib/rucio/daemons/conveyor/stager.py +++ b/lib/rucio/daemons/conveyor/stager.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/conveyor/submitter.py b/lib/rucio/daemons/conveyor/submitter.py index 3d701fbd45..c09ba86adf 100644 --- a/lib/rucio/daemons/conveyor/submitter.py +++ b/lib/rucio/daemons/conveyor/submitter.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/conveyor/throttler.py b/lib/rucio/daemons/conveyor/throttler.py index f93794202e..28dac61e63 100644 --- a/lib/rucio/daemons/conveyor/throttler.py +++ b/lib/rucio/daemons/conveyor/throttler.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/follower/__init__.py b/lib/rucio/daemons/follower/__init__.py index 06d1c8adf0..23757cf2d7 100644 --- a/lib/rucio/daemons/follower/__init__.py +++ b/lib/rucio/daemons/follower/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/follower/follower.py b/lib/rucio/daemons/follower/follower.py index b86dd8dc72..6aa574aa07 100644 --- a/lib/rucio/daemons/follower/follower.py +++ b/lib/rucio/daemons/follower/follower.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/hermes/__init__.py b/lib/rucio/daemons/hermes/__init__.py index 06d1c8adf0..23757cf2d7 100644 --- a/lib/rucio/daemons/hermes/__init__.py +++ b/lib/rucio/daemons/hermes/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/hermes/hermes.py b/lib/rucio/daemons/hermes/hermes.py index df279681a0..03f5356ecd 100644 --- a/lib/rucio/daemons/hermes/hermes.py +++ b/lib/rucio/daemons/hermes/hermes.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/judge/__init__.py b/lib/rucio/daemons/judge/__init__.py index 06d1c8adf0..23757cf2d7 100644 --- a/lib/rucio/daemons/judge/__init__.py +++ b/lib/rucio/daemons/judge/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/judge/cleaner.py b/lib/rucio/daemons/judge/cleaner.py index 43fd24a1b1..5b1c031159 100644 --- a/lib/rucio/daemons/judge/cleaner.py +++ b/lib/rucio/daemons/judge/cleaner.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/judge/evaluator.py b/lib/rucio/daemons/judge/evaluator.py index f26a5fa6e0..4348b1b051 100644 --- a/lib/rucio/daemons/judge/evaluator.py +++ b/lib/rucio/daemons/judge/evaluator.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/judge/injector.py b/lib/rucio/daemons/judge/injector.py index a214064597..cbfaee7cca 100644 --- a/lib/rucio/daemons/judge/injector.py +++ b/lib/rucio/daemons/judge/injector.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/judge/repairer.py b/lib/rucio/daemons/judge/repairer.py index b58f24969a..c3341f0f60 100644 --- a/lib/rucio/daemons/judge/repairer.py +++ b/lib/rucio/daemons/judge/repairer.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/oauthmanager/__init__.py b/lib/rucio/daemons/oauthmanager/__init__.py index 06d1c8adf0..23757cf2d7 100644 --- a/lib/rucio/daemons/oauthmanager/__init__.py +++ b/lib/rucio/daemons/oauthmanager/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/oauthmanager/oauthmanager.py b/lib/rucio/daemons/oauthmanager/oauthmanager.py index 32e15b4834..beed38ca64 100644 --- a/lib/rucio/daemons/oauthmanager/oauthmanager.py +++ b/lib/rucio/daemons/oauthmanager/oauthmanager.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/reaper/__init__.py b/lib/rucio/daemons/reaper/__init__.py index 06d1c8adf0..23757cf2d7 100644 --- a/lib/rucio/daemons/reaper/__init__.py +++ b/lib/rucio/daemons/reaper/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/reaper/dark_reaper.py b/lib/rucio/daemons/reaper/dark_reaper.py index 40c322802f..dce69ae221 100644 --- a/lib/rucio/daemons/reaper/dark_reaper.py +++ b/lib/rucio/daemons/reaper/dark_reaper.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/reaper/reaper.py b/lib/rucio/daemons/reaper/reaper.py index 069d3da6d1..024f8a74b4 100644 --- a/lib/rucio/daemons/reaper/reaper.py +++ b/lib/rucio/daemons/reaper/reaper.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/replicarecoverer/__init__.py b/lib/rucio/daemons/replicarecoverer/__init__.py index 06d1c8adf0..23757cf2d7 100644 --- a/lib/rucio/daemons/replicarecoverer/__init__.py +++ b/lib/rucio/daemons/replicarecoverer/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/replicarecoverer/suspicious_replica_recoverer.py b/lib/rucio/daemons/replicarecoverer/suspicious_replica_recoverer.py index 104aa453e9..eca3d6645e 100755 --- a/lib/rucio/daemons/replicarecoverer/suspicious_replica_recoverer.py +++ b/lib/rucio/daemons/replicarecoverer/suspicious_replica_recoverer.py @@ -1,5 +1,4 @@ #!/usr/bin/env python3 -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/rsedecommissioner/__init__.py b/lib/rucio/daemons/rsedecommissioner/__init__.py index 06d1c8adf0..23757cf2d7 100644 --- a/lib/rucio/daemons/rsedecommissioner/__init__.py +++ b/lib/rucio/daemons/rsedecommissioner/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/rsedecommissioner/config.py b/lib/rucio/daemons/rsedecommissioner/config.py index 51fcab47b6..71c481eacb 100644 --- a/lib/rucio/daemons/rsedecommissioner/config.py +++ b/lib/rucio/daemons/rsedecommissioner/config.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/rsedecommissioner/profiles/__init__.py b/lib/rucio/daemons/rsedecommissioner/profiles/__init__.py index 3b70ba756c..a588b365e3 100644 --- a/lib/rucio/daemons/rsedecommissioner/profiles/__init__.py +++ b/lib/rucio/daemons/rsedecommissioner/profiles/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/rsedecommissioner/profiles/atlas.py b/lib/rucio/daemons/rsedecommissioner/profiles/atlas.py index 5b8d3b8594..3c0c20bfed 100644 --- a/lib/rucio/daemons/rsedecommissioner/profiles/atlas.py +++ b/lib/rucio/daemons/rsedecommissioner/profiles/atlas.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/rsedecommissioner/profiles/generic.py b/lib/rucio/daemons/rsedecommissioner/profiles/generic.py index 819b6f6681..adcf336101 100644 --- a/lib/rucio/daemons/rsedecommissioner/profiles/generic.py +++ b/lib/rucio/daemons/rsedecommissioner/profiles/generic.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/rsedecommissioner/profiles/types.py b/lib/rucio/daemons/rsedecommissioner/profiles/types.py index e712116844..219e067e34 100644 --- a/lib/rucio/daemons/rsedecommissioner/profiles/types.py +++ b/lib/rucio/daemons/rsedecommissioner/profiles/types.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/rsedecommissioner/rse_decommissioner.py b/lib/rucio/daemons/rsedecommissioner/rse_decommissioner.py index 73e00a0ee3..7a145db7a8 100644 --- a/lib/rucio/daemons/rsedecommissioner/rse_decommissioner.py +++ b/lib/rucio/daemons/rsedecommissioner/rse_decommissioner.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/storage/__init__.py b/lib/rucio/daemons/storage/__init__.py index 06d1c8adf0..23757cf2d7 100644 --- a/lib/rucio/daemons/storage/__init__.py +++ b/lib/rucio/daemons/storage/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/storage/consistency/__init__.py b/lib/rucio/daemons/storage/consistency/__init__.py index 06d1c8adf0..23757cf2d7 100644 --- a/lib/rucio/daemons/storage/consistency/__init__.py +++ b/lib/rucio/daemons/storage/consistency/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/storage/consistency/actions.py b/lib/rucio/daemons/storage/consistency/actions.py index 6ae8762bf3..a765bf67d8 100644 --- a/lib/rucio/daemons/storage/consistency/actions.py +++ b/lib/rucio/daemons/storage/consistency/actions.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/tracer/__init__.py b/lib/rucio/daemons/tracer/__init__.py index 06d1c8adf0..23757cf2d7 100644 --- a/lib/rucio/daemons/tracer/__init__.py +++ b/lib/rucio/daemons/tracer/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/tracer/kronos.py b/lib/rucio/daemons/tracer/kronos.py index 5118d900ef..6b78d8f4c1 100644 --- a/lib/rucio/daemons/tracer/kronos.py +++ b/lib/rucio/daemons/tracer/kronos.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/transmogrifier/__init__.py b/lib/rucio/daemons/transmogrifier/__init__.py index 06d1c8adf0..23757cf2d7 100644 --- a/lib/rucio/daemons/transmogrifier/__init__.py +++ b/lib/rucio/daemons/transmogrifier/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/transmogrifier/transmogrifier.py b/lib/rucio/daemons/transmogrifier/transmogrifier.py index 5a68b3839a..c46a5b30e8 100644 --- a/lib/rucio/daemons/transmogrifier/transmogrifier.py +++ b/lib/rucio/daemons/transmogrifier/transmogrifier.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/undertaker/__init__.py b/lib/rucio/daemons/undertaker/__init__.py index 06d1c8adf0..23757cf2d7 100644 --- a/lib/rucio/daemons/undertaker/__init__.py +++ b/lib/rucio/daemons/undertaker/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/daemons/undertaker/undertaker.py b/lib/rucio/daemons/undertaker/undertaker.py index 8673ed9230..80d92242d4 100644 --- a/lib/rucio/daemons/undertaker/undertaker.py +++ b/lib/rucio/daemons/undertaker/undertaker.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/__init__.py b/lib/rucio/db/__init__.py index 06d1c8adf0..23757cf2d7 100644 --- a/lib/rucio/db/__init__.py +++ b/lib/rucio/db/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/__init__.py b/lib/rucio/db/sqla/__init__.py index 95456e55d1..33d61fb1d9 100644 --- a/lib/rucio/db/sqla/__init__.py +++ b/lib/rucio/db/sqla/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/constants.py b/lib/rucio/db/sqla/constants.py index 2ca08588ce..65b680069c 100644 --- a/lib/rucio/db/sqla/constants.py +++ b/lib/rucio/db/sqla/constants.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/__init__.py b/lib/rucio/db/sqla/migrate_repo/__init__.py index 06d1c8adf0..23757cf2d7 100644 --- a/lib/rucio/db/sqla/migrate_repo/__init__.py +++ b/lib/rucio/db/sqla/migrate_repo/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/env.py b/lib/rucio/db/sqla/migrate_repo/env.py index 608b996141..d629c689ca 100644 --- a/lib/rucio/db/sqla/migrate_repo/env.py +++ b/lib/rucio/db/sqla/migrate_repo/env.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/01eaf73ab656_add_new_rule_notification_state_progress.py b/lib/rucio/db/sqla/migrate_repo/versions/01eaf73ab656_add_new_rule_notification_state_progress.py index bfbe66c89a..f052c1e053 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/01eaf73ab656_add_new_rule_notification_state_progress.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/01eaf73ab656_add_new_rule_notification_state_progress.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/0437a40dbfd1_add_eol_at_in_rules.py b/lib/rucio/db/sqla/migrate_repo/versions/0437a40dbfd1_add_eol_at_in_rules.py index 5640376ad4..0e0e205864 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/0437a40dbfd1_add_eol_at_in_rules.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/0437a40dbfd1_add_eol_at_in_rules.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/0f1adb7a599a_create_transfer_hops_table.py b/lib/rucio/db/sqla/migrate_repo/versions/0f1adb7a599a_create_transfer_hops_table.py index 579f8a2ffd..5949e9ef4d 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/0f1adb7a599a_create_transfer_hops_table.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/0f1adb7a599a_create_transfer_hops_table.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/102efcf145f4_added_stuck_at_column_to_rules.py b/lib/rucio/db/sqla/migrate_repo/versions/102efcf145f4_added_stuck_at_column_to_rules.py index dc99aefa11..15a0ed0767 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/102efcf145f4_added_stuck_at_column_to_rules.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/102efcf145f4_added_stuck_at_column_to_rules.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/13d4f70c66a9_introduce_transfer_limits.py b/lib/rucio/db/sqla/migrate_repo/versions/13d4f70c66a9_introduce_transfer_limits.py index a634162fcb..5064dd84a2 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/13d4f70c66a9_introduce_transfer_limits.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/13d4f70c66a9_introduce_transfer_limits.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/140fef722e91_cleanup_distances_table.py b/lib/rucio/db/sqla/migrate_repo/versions/140fef722e91_cleanup_distances_table.py index 53da643a3d..87dc52872b 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/140fef722e91_cleanup_distances_table.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/140fef722e91_cleanup_distances_table.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/14ec5aeb64cf_add_request_external_host.py b/lib/rucio/db/sqla/migrate_repo/versions/14ec5aeb64cf_add_request_external_host.py index 5697f45f6b..6796082b48 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/14ec5aeb64cf_add_request_external_host.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/14ec5aeb64cf_add_request_external_host.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/156fb5b5a14_add_request_type_to_requests_idx.py b/lib/rucio/db/sqla/migrate_repo/versions/156fb5b5a14_add_request_type_to_requests_idx.py index a477786f82..6f2d5e4045 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/156fb5b5a14_add_request_type_to_requests_idx.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/156fb5b5a14_add_request_type_to_requests_idx.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/1677d4d803c8_split_rse_availability_into_multiple.py b/lib/rucio/db/sqla/migrate_repo/versions/1677d4d803c8_split_rse_availability_into_multiple.py index a46db5b34a..7e0cea25c7 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/1677d4d803c8_split_rse_availability_into_multiple.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/1677d4d803c8_split_rse_availability_into_multiple.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/16a0aca82e12_create_index_on_table_replicas_path.py b/lib/rucio/db/sqla/migrate_repo/versions/16a0aca82e12_create_index_on_table_replicas_path.py index 2d52b4e85e..1d4ded8bbc 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/16a0aca82e12_create_index_on_table_replicas_path.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/16a0aca82e12_create_index_on_table_replicas_path.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/1803333ac20f_adding_provenance_and_phys_group.py b/lib/rucio/db/sqla/migrate_repo/versions/1803333ac20f_adding_provenance_and_phys_group.py index e30c58d9bc..7ec702b99b 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/1803333ac20f_adding_provenance_and_phys_group.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/1803333ac20f_adding_provenance_and_phys_group.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/1a29d6a9504c_add_didtype_chck_to_requests.py b/lib/rucio/db/sqla/migrate_repo/versions/1a29d6a9504c_add_didtype_chck_to_requests.py index 1734e73165..b7fbda96b8 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/1a29d6a9504c_add_didtype_chck_to_requests.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/1a29d6a9504c_add_didtype_chck_to_requests.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/1a80adff031a_create_index_on_rules_hist_recent.py b/lib/rucio/db/sqla/migrate_repo/versions/1a80adff031a_create_index_on_rules_hist_recent.py index 07399c1811..d86788f2d6 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/1a80adff031a_create_index_on_rules_hist_recent.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/1a80adff031a_create_index_on_rules_hist_recent.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/1c45d9730ca6_increase_identity_length.py b/lib/rucio/db/sqla/migrate_repo/versions/1c45d9730ca6_increase_identity_length.py index e8a6848ff9..e97657a5c0 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/1c45d9730ca6_increase_identity_length.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/1c45d9730ca6_increase_identity_length.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/1d1215494e95_add_quarantined_replicas_table.py b/lib/rucio/db/sqla/migrate_repo/versions/1d1215494e95_add_quarantined_replicas_table.py index 54d8551a19..ae90e4ca70 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/1d1215494e95_add_quarantined_replicas_table.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/1d1215494e95_add_quarantined_replicas_table.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/1d96f484df21_asynchronous_rules_and_rule_approval.py b/lib/rucio/db/sqla/migrate_repo/versions/1d96f484df21_asynchronous_rules_and_rule_approval.py index cbd6e41c61..acfe2dbcb2 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/1d96f484df21_asynchronous_rules_and_rule_approval.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/1d96f484df21_asynchronous_rules_and_rule_approval.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/1f46c5f240ac_add_bytes_column_to_bad_replicas.py b/lib/rucio/db/sqla/migrate_repo/versions/1f46c5f240ac_add_bytes_column_to_bad_replicas.py index 4749536f17..fb586aa767 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/1f46c5f240ac_add_bytes_column_to_bad_replicas.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/1f46c5f240ac_add_bytes_column_to_bad_replicas.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/1fc15ab60d43_add_message_history_table.py b/lib/rucio/db/sqla/migrate_repo/versions/1fc15ab60d43_add_message_history_table.py index dc59357c0b..c79685bc0a 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/1fc15ab60d43_add_message_history_table.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/1fc15ab60d43_add_message_history_table.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/2190e703eb6e_move_rse_settings_to_rse_attributes.py b/lib/rucio/db/sqla/migrate_repo/versions/2190e703eb6e_move_rse_settings_to_rse_attributes.py index 8bb17323be..4c6728a653 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/2190e703eb6e_move_rse_settings_to_rse_attributes.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/2190e703eb6e_move_rse_settings_to_rse_attributes.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/21d6b9dc9961_add_mismatch_scheme_state_to_requests.py b/lib/rucio/db/sqla/migrate_repo/versions/21d6b9dc9961_add_mismatch_scheme_state_to_requests.py index a4194647f6..30126f49c3 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/21d6b9dc9961_add_mismatch_scheme_state_to_requests.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/21d6b9dc9961_add_mismatch_scheme_state_to_requests.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/22cf51430c78_add_availability_column_to_table_rses.py b/lib/rucio/db/sqla/migrate_repo/versions/22cf51430c78_add_availability_column_to_table_rses.py index e586d7569b..1d81e59d9f 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/22cf51430c78_add_availability_column_to_table_rses.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/22cf51430c78_add_availability_column_to_table_rses.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/22d887e4ec0a_create_sources_table.py b/lib/rucio/db/sqla/migrate_repo/versions/22d887e4ec0a_create_sources_table.py index c4eee238d1..5e3fe729d0 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/22d887e4ec0a_create_sources_table.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/22d887e4ec0a_create_sources_table.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/25821a8a45a3_remove_unique_constraint_on_requests.py b/lib/rucio/db/sqla/migrate_repo/versions/25821a8a45a3_remove_unique_constraint_on_requests.py index 43e637a379..508d073847 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/25821a8a45a3_remove_unique_constraint_on_requests.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/25821a8a45a3_remove_unique_constraint_on_requests.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/25fc855625cf_added_unique_constraint_to_rules.py b/lib/rucio/db/sqla/migrate_repo/versions/25fc855625cf_added_unique_constraint_to_rules.py index e94015b255..90f5ad2c38 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/25fc855625cf_added_unique_constraint_to_rules.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/25fc855625cf_added_unique_constraint_to_rules.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/269fee20dee9_add_repair_cnt_to_locks.py b/lib/rucio/db/sqla/migrate_repo/versions/269fee20dee9_add_repair_cnt_to_locks.py index b8f359afa5..b4362f6deb 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/269fee20dee9_add_repair_cnt_to_locks.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/269fee20dee9_add_repair_cnt_to_locks.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/271a46ea6244_add_ignore_availability_column_to_rules.py b/lib/rucio/db/sqla/migrate_repo/versions/271a46ea6244_add_ignore_availability_column_to_rules.py index fb5f9e183d..765625ddfe 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/271a46ea6244_add_ignore_availability_column_to_rules.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/271a46ea6244_add_ignore_availability_column_to_rules.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/277b5fbb41d3_switch_heartbeats_executable.py b/lib/rucio/db/sqla/migrate_repo/versions/277b5fbb41d3_switch_heartbeats_executable.py index 710910efe7..5bf8b973a0 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/277b5fbb41d3_switch_heartbeats_executable.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/277b5fbb41d3_switch_heartbeats_executable.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/27e3a68927fb_remove_replicas_tombstone_and_replicas_.py b/lib/rucio/db/sqla/migrate_repo/versions/27e3a68927fb_remove_replicas_tombstone_and_replicas_.py index efa3556cd6..55fcdc09e7 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/27e3a68927fb_remove_replicas_tombstone_and_replicas_.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/27e3a68927fb_remove_replicas_tombstone_and_replicas_.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/2854cd9e168_added_rule_id_column.py b/lib/rucio/db/sqla/migrate_repo/versions/2854cd9e168_added_rule_id_column.py index 28250cdca6..ec003a4fc2 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/2854cd9e168_added_rule_id_column.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/2854cd9e168_added_rule_id_column.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/295289b5a800_processed_by_and__at_in_requests.py b/lib/rucio/db/sqla/migrate_repo/versions/295289b5a800_processed_by_and__at_in_requests.py index 9d1bf4ce0a..96a2aed787 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/295289b5a800_processed_by_and__at_in_requests.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/295289b5a800_processed_by_and__at_in_requests.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/2962ece31cf4_add_nbaccesses_column_in_the_did_table.py b/lib/rucio/db/sqla/migrate_repo/versions/2962ece31cf4_add_nbaccesses_column_in_the_did_table.py index d781743dd9..a664e6732d 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/2962ece31cf4_add_nbaccesses_column_in_the_did_table.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/2962ece31cf4_add_nbaccesses_column_in_the_did_table.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/2af3291ec4c_added_replicas_history_table.py b/lib/rucio/db/sqla/migrate_repo/versions/2af3291ec4c_added_replicas_history_table.py index a6d8425ba4..a2757dfdd2 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/2af3291ec4c_added_replicas_history_table.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/2af3291ec4c_added_replicas_history_table.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/2b69addda658_add_columns_for_third_party_copy_read_.py b/lib/rucio/db/sqla/migrate_repo/versions/2b69addda658_add_columns_for_third_party_copy_read_.py index 3c0abf3e42..24dc46b776 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/2b69addda658_add_columns_for_third_party_copy_read_.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/2b69addda658_add_columns_for_third_party_copy_read_.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/2b8e7bcb4783_add_config_table.py b/lib/rucio/db/sqla/migrate_repo/versions/2b8e7bcb4783_add_config_table.py index 59ac7234f1..50fda8b93e 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/2b8e7bcb4783_add_config_table.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/2b8e7bcb4783_add_config_table.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/2ba5229cb54c_add_submitted_at_to_requests_table.py b/lib/rucio/db/sqla/migrate_repo/versions/2ba5229cb54c_add_submitted_at_to_requests_table.py index e50841d55a..b77ecf0993 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/2ba5229cb54c_add_submitted_at_to_requests_table.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/2ba5229cb54c_add_submitted_at_to_requests_table.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/2cbee484dcf9_added_column_volume_to_rse_transfer_.py b/lib/rucio/db/sqla/migrate_repo/versions/2cbee484dcf9_added_column_volume_to_rse_transfer_.py index f9cb2b6e6a..b215080470 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/2cbee484dcf9_added_column_volume_to_rse_transfer_.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/2cbee484dcf9_added_column_volume_to_rse_transfer_.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/2edee4a83846_add_source_to_requests_and_requests_.py b/lib/rucio/db/sqla/migrate_repo/versions/2edee4a83846_add_source_to_requests_and_requests_.py index e9e6a82a12..2f2b286a15 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/2edee4a83846_add_source_to_requests_and_requests_.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/2edee4a83846_add_source_to_requests_and_requests_.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/2eef46be23d4_change_tokens_pk.py b/lib/rucio/db/sqla/migrate_repo/versions/2eef46be23d4_change_tokens_pk.py index b4300edb2f..e0f026f151 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/2eef46be23d4_change_tokens_pk.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/2eef46be23d4_change_tokens_pk.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/2f648fc909f3_index_in_rule_history_on_scope_name.py b/lib/rucio/db/sqla/migrate_repo/versions/2f648fc909f3_index_in_rule_history_on_scope_name.py index d2c94e7fbb..5556d63e87 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/2f648fc909f3_index_in_rule_history_on_scope_name.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/2f648fc909f3_index_in_rule_history_on_scope_name.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/3082b8cef557_add_naming_convention_table_and_closed_.py b/lib/rucio/db/sqla/migrate_repo/versions/3082b8cef557_add_naming_convention_table_and_closed_.py index 6b736f7433..62af248031 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/3082b8cef557_add_naming_convention_table_and_closed_.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/3082b8cef557_add_naming_convention_table_and_closed_.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/30fa38b6434e_add_index_on_service_column_in_the_message_table.py b/lib/rucio/db/sqla/migrate_repo/versions/30fa38b6434e_add_index_on_service_column_in_the_message_table.py index 74f436110a..8c2cb34b75 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/30fa38b6434e_add_index_on_service_column_in_the_message_table.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/30fa38b6434e_add_index_on_service_column_in_the_message_table.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/3152492b110b_added_staging_area_column.py b/lib/rucio/db/sqla/migrate_repo/versions/3152492b110b_added_staging_area_column.py index 54390098de..d3bf7d93d2 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/3152492b110b_added_staging_area_column.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/3152492b110b_added_staging_area_column.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/32c7d2783f7e_create_bad_replicas_table.py b/lib/rucio/db/sqla/migrate_repo/versions/32c7d2783f7e_create_bad_replicas_table.py index 7dcc23c96d..576b3cda1b 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/32c7d2783f7e_create_bad_replicas_table.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/32c7d2783f7e_create_bad_replicas_table.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/3345511706b8_replicas_table_pk_definition_is_in_.py b/lib/rucio/db/sqla/migrate_repo/versions/3345511706b8_replicas_table_pk_definition_is_in_.py index ba38bdb6a2..7f6367007c 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/3345511706b8_replicas_table_pk_definition_is_in_.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/3345511706b8_replicas_table_pk_definition_is_in_.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/35ef10d1e11b_change_index_on_table_requests.py b/lib/rucio/db/sqla/migrate_repo/versions/35ef10d1e11b_change_index_on_table_requests.py index 7851a9cea4..4757185f78 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/35ef10d1e11b_change_index_on_table_requests.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/35ef10d1e11b_change_index_on_table_requests.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/379a19b5332d_create_rse_limits_table.py b/lib/rucio/db/sqla/migrate_repo/versions/379a19b5332d_create_rse_limits_table.py index f60d19c6bc..e534886bf9 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/379a19b5332d_create_rse_limits_table.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/379a19b5332d_create_rse_limits_table.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/384b96aa0f60_created_rule_history_tables.py b/lib/rucio/db/sqla/migrate_repo/versions/384b96aa0f60_created_rule_history_tables.py index eb193e2a73..f1da4ed33e 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/384b96aa0f60_created_rule_history_tables.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/384b96aa0f60_created_rule_history_tables.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/3ac1660a1a72_extend_distance_table.py b/lib/rucio/db/sqla/migrate_repo/versions/3ac1660a1a72_extend_distance_table.py index dc6b683ebf..3aaf499c04 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/3ac1660a1a72_extend_distance_table.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/3ac1660a1a72_extend_distance_table.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/3ad36e2268b0_create_collection_replicas_updates_table.py b/lib/rucio/db/sqla/migrate_repo/versions/3ad36e2268b0_create_collection_replicas_updates_table.py index 5752de3bd9..bfd29f56bb 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/3ad36e2268b0_create_collection_replicas_updates_table.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/3ad36e2268b0_create_collection_replicas_updates_table.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/3c9df354071b_extend_waiting_request_state.py b/lib/rucio/db/sqla/migrate_repo/versions/3c9df354071b_extend_waiting_request_state.py index 227a55e649..82021f3517 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/3c9df354071b_extend_waiting_request_state.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/3c9df354071b_extend_waiting_request_state.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/3d9813fab443_add_a_new_state_lost_in_badfilesstatus.py b/lib/rucio/db/sqla/migrate_repo/versions/3d9813fab443_add_a_new_state_lost_in_badfilesstatus.py index 0ceb047232..e5f7beb9db 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/3d9813fab443_add_a_new_state_lost_in_badfilesstatus.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/3d9813fab443_add_a_new_state_lost_in_badfilesstatus.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/40ad39ce3160_add_transferred_at_to_requests_table.py b/lib/rucio/db/sqla/migrate_repo/versions/40ad39ce3160_add_transferred_at_to_requests_table.py index cbe0ba7ea5..96157490d5 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/40ad39ce3160_add_transferred_at_to_requests_table.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/40ad39ce3160_add_transferred_at_to_requests_table.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/4207be2fd914_add_notification_column_to_rules.py b/lib/rucio/db/sqla/migrate_repo/versions/4207be2fd914_add_notification_column_to_rules.py index f581eeae77..9baea20caa 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/4207be2fd914_add_notification_column_to_rules.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/4207be2fd914_add_notification_column_to_rules.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/42db2617c364_create_index_on_requests_external_id.py b/lib/rucio/db/sqla/migrate_repo/versions/42db2617c364_create_index_on_requests_external_id.py index 1b4fd245ba..9ca4c37f17 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/42db2617c364_create_index_on_requests_external_id.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/42db2617c364_create_index_on_requests_external_id.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/436827b13f82_added_column_activity_to_table_requests.py b/lib/rucio/db/sqla/migrate_repo/versions/436827b13f82_added_column_activity_to_table_requests.py index f1e071a572..cd1b784f47 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/436827b13f82_added_column_activity_to_table_requests.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/436827b13f82_added_column_activity_to_table_requests.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/44278720f774_update_requests_typ_sta_upd_idx_index.py b/lib/rucio/db/sqla/migrate_repo/versions/44278720f774_update_requests_typ_sta_upd_idx_index.py index 1239c29dd2..d1138116c5 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/44278720f774_update_requests_typ_sta_upd_idx_index.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/44278720f774_update_requests_typ_sta_upd_idx_index.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/45378a1e76a8_create_collection_replica_table.py b/lib/rucio/db/sqla/migrate_repo/versions/45378a1e76a8_create_collection_replica_table.py index c7bafc9285..8e97d1b0ea 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/45378a1e76a8_create_collection_replica_table.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/45378a1e76a8_create_collection_replica_table.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/469d262be19_removing_created_at_index.py b/lib/rucio/db/sqla/migrate_repo/versions/469d262be19_removing_created_at_index.py index 9d1f7c802d..fd8c7930f5 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/469d262be19_removing_created_at_index.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/469d262be19_removing_created_at_index.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/4783c1f49cb4_create_distance_table.py b/lib/rucio/db/sqla/migrate_repo/versions/4783c1f49cb4_create_distance_table.py index b3d4625606..5fb5c946e9 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/4783c1f49cb4_create_distance_table.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/4783c1f49cb4_create_distance_table.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/49a21b4d4357_create_index_on_table_tokens.py b/lib/rucio/db/sqla/migrate_repo/versions/49a21b4d4357_create_index_on_table_tokens.py index 08ec19d485..78de81998b 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/49a21b4d4357_create_index_on_table_tokens.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/49a21b4d4357_create_index_on_table_tokens.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/4a2cbedda8b9_add_source_replica_expression_column_to_.py b/lib/rucio/db/sqla/migrate_repo/versions/4a2cbedda8b9_add_source_replica_expression_column_to_.py index 06b6d48c2e..ed8ce5442c 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/4a2cbedda8b9_add_source_replica_expression_column_to_.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/4a2cbedda8b9_add_source_replica_expression_column_to_.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/4a7182d9578b_added_bytes_length_accessed_at_columns.py b/lib/rucio/db/sqla/migrate_repo/versions/4a7182d9578b_added_bytes_length_accessed_at_columns.py index e28fb2fd86..4439f87537 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/4a7182d9578b_added_bytes_length_accessed_at_columns.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/4a7182d9578b_added_bytes_length_accessed_at_columns.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/4bab9edd01fc_create_index_on_requests_rule_id.py b/lib/rucio/db/sqla/migrate_repo/versions/4bab9edd01fc_create_index_on_requests_rule_id.py index f1343aa0d7..c83b4dc2f4 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/4bab9edd01fc_create_index_on_requests_rule_id.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/4bab9edd01fc_create_index_on_requests_rule_id.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/4c3a4acfe006_new_attr_account_table.py b/lib/rucio/db/sqla/migrate_repo/versions/4c3a4acfe006_new_attr_account_table.py index 215ebe2fb9..a6efec1696 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/4c3a4acfe006_new_attr_account_table.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/4c3a4acfe006_new_attr_account_table.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/4cf0a2e127d4_adding_transient_metadata.py b/lib/rucio/db/sqla/migrate_repo/versions/4cf0a2e127d4_adding_transient_metadata.py index eb088e8bd4..6dba91a833 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/4cf0a2e127d4_adding_transient_metadata.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/4cf0a2e127d4_adding_transient_metadata.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/4df2c5ddabc0_remove_temporary_dids.py b/lib/rucio/db/sqla/migrate_repo/versions/4df2c5ddabc0_remove_temporary_dids.py index 12c3e695ee..7771616a85 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/4df2c5ddabc0_remove_temporary_dids.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/4df2c5ddabc0_remove_temporary_dids.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/50280c53117c_add_qos_class_to_rse.py b/lib/rucio/db/sqla/migrate_repo/versions/50280c53117c_add_qos_class_to_rse.py index 96e297136f..d98ca2e6c2 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/50280c53117c_add_qos_class_to_rse.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/50280c53117c_add_qos_class_to_rse.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/52153819589c_add_rse_id_to_replicas_table.py b/lib/rucio/db/sqla/migrate_repo/versions/52153819589c_add_rse_id_to_replicas_table.py index fb860e9904..892aae61d9 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/52153819589c_add_rse_id_to_replicas_table.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/52153819589c_add_rse_id_to_replicas_table.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/52fd9f4916fa_added_activity_to_rules.py b/lib/rucio/db/sqla/migrate_repo/versions/52fd9f4916fa_added_activity_to_rules.py index d2c76f4e88..fd624e7266 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/52fd9f4916fa_added_activity_to_rules.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/52fd9f4916fa_added_activity_to_rules.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/53b479c3cb0f_fix_did_meta_table_missing_updated_at_.py b/lib/rucio/db/sqla/migrate_repo/versions/53b479c3cb0f_fix_did_meta_table_missing_updated_at_.py index 7465c6b282..1a7846bb6f 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/53b479c3cb0f_fix_did_meta_table_missing_updated_at_.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/53b479c3cb0f_fix_did_meta_table_missing_updated_at_.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/5673b4b6e843_add_wfms_metadata_to_rule_tables.py b/lib/rucio/db/sqla/migrate_repo/versions/5673b4b6e843_add_wfms_metadata_to_rule_tables.py index d354fa6d9d..2e7c42e07b 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/5673b4b6e843_add_wfms_metadata_to_rule_tables.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/5673b4b6e843_add_wfms_metadata_to_rule_tables.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/575767d9f89_added_source_history_table.py b/lib/rucio/db/sqla/migrate_repo/versions/575767d9f89_added_source_history_table.py index d3e9388ffe..4040acb62f 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/575767d9f89_added_source_history_table.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/575767d9f89_added_source_history_table.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/58bff7008037_add_started_at_to_requests.py b/lib/rucio/db/sqla/migrate_repo/versions/58bff7008037_add_started_at_to_requests.py index 9dd35ccced..d2c1c1835b 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/58bff7008037_add_started_at_to_requests.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/58bff7008037_add_started_at_to_requests.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/58c8b78301ab_rename_callback_to_message.py b/lib/rucio/db/sqla/migrate_repo/versions/58c8b78301ab_rename_callback_to_message.py index b68b774cb0..176ad53ccd 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/58c8b78301ab_rename_callback_to_message.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/58c8b78301ab_rename_callback_to_message.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/5f139f77382a_added_child_rule_id_column.py b/lib/rucio/db/sqla/migrate_repo/versions/5f139f77382a_added_child_rule_id_column.py index bca8333c00..7e5454ec3e 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/5f139f77382a_added_child_rule_id_column.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/5f139f77382a_added_child_rule_id_column.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/688ef1840840_adding_did_meta_table.py b/lib/rucio/db/sqla/migrate_repo/versions/688ef1840840_adding_did_meta_table.py index debd41d4b4..d6d3b9eae8 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/688ef1840840_adding_did_meta_table.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/688ef1840840_adding_did_meta_table.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/6e572a9bfbf3_add_new_split_container_column_to_rules.py b/lib/rucio/db/sqla/migrate_repo/versions/6e572a9bfbf3_add_new_split_container_column_to_rules.py index d3298ff141..3b38ee1e75 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/6e572a9bfbf3_add_new_split_container_column_to_rules.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/6e572a9bfbf3_add_new_split_container_column_to_rules.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/70587619328_add_comment_column_for_subscriptions.py b/lib/rucio/db/sqla/migrate_repo/versions/70587619328_add_comment_column_for_subscriptions.py index 352b242759..b6b7c9c44f 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/70587619328_add_comment_column_for_subscriptions.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/70587619328_add_comment_column_for_subscriptions.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/739064d31565_remove_history_table_pks.py b/lib/rucio/db/sqla/migrate_repo/versions/739064d31565_remove_history_table_pks.py index 461f44cce0..5072cadeb7 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/739064d31565_remove_history_table_pks.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/739064d31565_remove_history_table_pks.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/7541902bf173_add_didsfollowed_and_followevents_table.py b/lib/rucio/db/sqla/migrate_repo/versions/7541902bf173_add_didsfollowed_and_followevents_table.py index b35d811fbb..7e3cc226e7 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/7541902bf173_add_didsfollowed_and_followevents_table.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/7541902bf173_add_didsfollowed_and_followevents_table.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/7ec22226cdbf_new_replica_state_for_temporary_.py b/lib/rucio/db/sqla/migrate_repo/versions/7ec22226cdbf_new_replica_state_for_temporary_.py index f6de46949f..cdfd24dadf 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/7ec22226cdbf_new_replica_state_for_temporary_.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/7ec22226cdbf_new_replica_state_for_temporary_.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/810a41685bc1_added_columns_rse_transfer_limits.py b/lib/rucio/db/sqla/migrate_repo/versions/810a41685bc1_added_columns_rse_transfer_limits.py index 4fc20d8bc8..fc8faad696 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/810a41685bc1_added_columns_rse_transfer_limits.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/810a41685bc1_added_columns_rse_transfer_limits.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/83f991c63a93_correct_rse_expression_length.py b/lib/rucio/db/sqla/migrate_repo/versions/83f991c63a93_correct_rse_expression_length.py index d57d0418e0..f5c9dc712a 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/83f991c63a93_correct_rse_expression_length.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/83f991c63a93_correct_rse_expression_length.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/8523998e2e76_increase_size_of_extended_attributes_.py b/lib/rucio/db/sqla/migrate_repo/versions/8523998e2e76_increase_size_of_extended_attributes_.py index 24f2649444..de23d71b09 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/8523998e2e76_increase_size_of_extended_attributes_.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/8523998e2e76_increase_size_of_extended_attributes_.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/8ea9122275b1_adding_missing_function_based_indices.py b/lib/rucio/db/sqla/migrate_repo/versions/8ea9122275b1_adding_missing_function_based_indices.py index 4466c6f398..1f4c822f3d 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/8ea9122275b1_adding_missing_function_based_indices.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/8ea9122275b1_adding_missing_function_based_indices.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/90f47792bb76_add_clob_payload_to_messages.py b/lib/rucio/db/sqla/migrate_repo/versions/90f47792bb76_add_clob_payload_to_messages.py index 886c084efd..a1c5b2ae62 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/90f47792bb76_add_clob_payload_to_messages.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/90f47792bb76_add_clob_payload_to_messages.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/914b8f02df38_new_table_for_lifetime_model_exceptions.py b/lib/rucio/db/sqla/migrate_repo/versions/914b8f02df38_new_table_for_lifetime_model_exceptions.py index 2b4da66539..040fcd9811 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/914b8f02df38_new_table_for_lifetime_model_exceptions.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/914b8f02df38_new_table_for_lifetime_model_exceptions.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/94a5961ddbf2_add_estimator_columns.py b/lib/rucio/db/sqla/migrate_repo/versions/94a5961ddbf2_add_estimator_columns.py index 0d635271dc..2986ecd8f1 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/94a5961ddbf2_add_estimator_columns.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/94a5961ddbf2_add_estimator_columns.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/9a1b149a2044_add_saml_identity_type.py b/lib/rucio/db/sqla/migrate_repo/versions/9a1b149a2044_add_saml_identity_type.py index a42ddab859..40475c388c 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/9a1b149a2044_add_saml_identity_type.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/9a1b149a2044_add_saml_identity_type.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/9a45bc4ea66d_add_vp_table.py b/lib/rucio/db/sqla/migrate_repo/versions/9a45bc4ea66d_add_vp_table.py index bfe8bef2d9..acb69ede8a 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/9a45bc4ea66d_add_vp_table.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/9a45bc4ea66d_add_vp_table.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/9eb936a81eb1_true_is_true.py b/lib/rucio/db/sqla/migrate_repo/versions/9eb936a81eb1_true_is_true.py index fd201c5881..eb0d55b361 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/9eb936a81eb1_true_is_true.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/9eb936a81eb1_true_is_true.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/a08fa8de1545_transfer_stats_table.py b/lib/rucio/db/sqla/migrate_repo/versions/a08fa8de1545_transfer_stats_table.py index bba7a60c18..d9bc461c34 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/a08fa8de1545_transfer_stats_table.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/a08fa8de1545_transfer_stats_table.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/a118956323f8_added_vo_table_and_vo_col_to_rse.py b/lib/rucio/db/sqla/migrate_repo/versions/a118956323f8_added_vo_table_and_vo_col_to_rse.py index eac0befefb..9d5ceccd6c 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/a118956323f8_added_vo_table_and_vo_col_to_rse.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/a118956323f8_added_vo_table_and_vo_col_to_rse.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/a193a275255c_add_status_column_in_messages.py b/lib/rucio/db/sqla/migrate_repo/versions/a193a275255c_add_status_column_in_messages.py index 2266dee212..e98054f748 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/a193a275255c_add_status_column_in_messages.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/a193a275255c_add_status_column_in_messages.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/a5f6f6e928a7_1_7_0.py b/lib/rucio/db/sqla/migrate_repo/versions/a5f6f6e928a7_1_7_0.py index b01be0577e..922b62d0e4 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/a5f6f6e928a7_1_7_0.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/a5f6f6e928a7_1_7_0.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/a616581ee47_added_columns_to_table_requests.py b/lib/rucio/db/sqla/migrate_repo/versions/a616581ee47_added_columns_to_table_requests.py index a6509ace49..f36809f8ff 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/a616581ee47_added_columns_to_table_requests.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/a616581ee47_added_columns_to_table_requests.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/a6eb23955c28_state_idx_non_functional.py b/lib/rucio/db/sqla/migrate_repo/versions/a6eb23955c28_state_idx_non_functional.py index f3596ffedb..c8cab4cd2b 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/a6eb23955c28_state_idx_non_functional.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/a6eb23955c28_state_idx_non_functional.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/a74275a1ad30_added_global_quota_table.py b/lib/rucio/db/sqla/migrate_repo/versions/a74275a1ad30_added_global_quota_table.py index d32ec86061..815677cc08 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/a74275a1ad30_added_global_quota_table.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/a74275a1ad30_added_global_quota_table.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/a93e4e47bda_heartbeats.py b/lib/rucio/db/sqla/migrate_repo/versions/a93e4e47bda_heartbeats.py index 61b8231115..d82944900d 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/a93e4e47bda_heartbeats.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/a93e4e47bda_heartbeats.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/ae2a56fcc89_added_comment_column_to_rules.py b/lib/rucio/db/sqla/migrate_repo/versions/ae2a56fcc89_added_comment_column_to_rules.py index 04339e672b..9f3c158a2b 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/ae2a56fcc89_added_comment_column_to_rules.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/ae2a56fcc89_added_comment_column_to_rules.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/b4293a99f344_added_column_identity_to_table_tokens.py b/lib/rucio/db/sqla/migrate_repo/versions/b4293a99f344_added_column_identity_to_table_tokens.py index 5a81ff946a..58c327f5ca 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/b4293a99f344_added_column_identity_to_table_tokens.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/b4293a99f344_added_column_identity_to_table_tokens.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/b7d287de34fd_removal_of_replicastate_source.py b/lib/rucio/db/sqla/migrate_repo/versions/b7d287de34fd_removal_of_replicastate_source.py index bf9f65c8cc..538bbc5d7e 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/b7d287de34fd_removal_of_replicastate_source.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/b7d287de34fd_removal_of_replicastate_source.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/b818052fa670_add_index_to_quarantined_replicas.py b/lib/rucio/db/sqla/migrate_repo/versions/b818052fa670_add_index_to_quarantined_replicas.py index 44ad092001..11c42f1955 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/b818052fa670_add_index_to_quarantined_replicas.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/b818052fa670_add_index_to_quarantined_replicas.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/b8caac94d7f0_add_comments_column_for_subscriptions_.py b/lib/rucio/db/sqla/migrate_repo/versions/b8caac94d7f0_add_comments_column_for_subscriptions_.py index 6b3f0faccc..d5859b0ac3 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/b8caac94d7f0_add_comments_column_for_subscriptions_.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/b8caac94d7f0_add_comments_column_for_subscriptions_.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/b96a1c7e1cc4_new_bad_pfns_table_and_bad_replicas_.py b/lib/rucio/db/sqla/migrate_repo/versions/b96a1c7e1cc4_new_bad_pfns_table_and_bad_replicas_.py index 165863ad12..25bd74cb07 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/b96a1c7e1cc4_new_bad_pfns_table_and_bad_replicas_.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/b96a1c7e1cc4_new_bad_pfns_table_and_bad_replicas_.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/bb695f45c04_extend_request_state.py b/lib/rucio/db/sqla/migrate_repo/versions/bb695f45c04_extend_request_state.py index a3327f3196..58eefe65fd 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/bb695f45c04_extend_request_state.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/bb695f45c04_extend_request_state.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/bc68e9946deb_add_staging_timestamps_to_request.py b/lib/rucio/db/sqla/migrate_repo/versions/bc68e9946deb_add_staging_timestamps_to_request.py index 23b377aef5..3153dd532c 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/bc68e9946deb_add_staging_timestamps_to_request.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/bc68e9946deb_add_staging_timestamps_to_request.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/bf3baa1c1474_correct_pk_and_idx_for_history_tables.py b/lib/rucio/db/sqla/migrate_repo/versions/bf3baa1c1474_correct_pk_and_idx_for_history_tables.py index 6498690016..8b4a4f269e 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/bf3baa1c1474_correct_pk_and_idx_for_history_tables.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/bf3baa1c1474_correct_pk_and_idx_for_history_tables.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/c0937668555f_add_qos_policy_map_table.py b/lib/rucio/db/sqla/migrate_repo/versions/c0937668555f_add_qos_policy_map_table.py index 13eb3bc441..b4435893d3 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/c0937668555f_add_qos_policy_map_table.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/c0937668555f_add_qos_policy_map_table.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/c129ccdb2d5_add_lumiblocknr_to_dids.py b/lib/rucio/db/sqla/migrate_repo/versions/c129ccdb2d5_add_lumiblocknr_to_dids.py index 17bf5a7d3a..16aec6d3f0 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/c129ccdb2d5_add_lumiblocknr_to_dids.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/c129ccdb2d5_add_lumiblocknr_to_dids.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/ccdbcd48206e_add_did_type_column_index_on_did_meta_.py b/lib/rucio/db/sqla/migrate_repo/versions/ccdbcd48206e_add_did_type_column_index_on_did_meta_.py index a40c82dcb2..cc44706f98 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/ccdbcd48206e_add_did_type_column_index_on_did_meta_.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/ccdbcd48206e_add_did_type_column_index_on_did_meta_.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/cebad904c4dd_new_payload_column_for_heartbeats.py b/lib/rucio/db/sqla/migrate_repo/versions/cebad904c4dd_new_payload_column_for_heartbeats.py index 38d118ef23..b5532165b2 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/cebad904c4dd_new_payload_column_for_heartbeats.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/cebad904c4dd_new_payload_column_for_heartbeats.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/d1189a09c6e0_oauth2_0_and_jwt_feature_support_adding_.py b/lib/rucio/db/sqla/migrate_repo/versions/d1189a09c6e0_oauth2_0_and_jwt_feature_support_adding_.py index dced31faf6..2ac9757e74 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/d1189a09c6e0_oauth2_0_and_jwt_feature_support_adding_.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/d1189a09c6e0_oauth2_0_and_jwt_feature_support_adding_.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/d23453595260_extend_request_state_for_preparer.py b/lib/rucio/db/sqla/migrate_repo/versions/d23453595260_extend_request_state_for_preparer.py index a099b1f18f..bb4b246cf6 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/d23453595260_extend_request_state_for_preparer.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/d23453595260_extend_request_state_for_preparer.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/d6dceb1de2d_added_purge_column_to_rules.py b/lib/rucio/db/sqla/migrate_repo/versions/d6dceb1de2d_added_purge_column_to_rules.py index 5393ff5277..d1ce47ad4a 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/d6dceb1de2d_added_purge_column_to_rules.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/d6dceb1de2d_added_purge_column_to_rules.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/d6e2c3b2cf26_remove_third_party_copy_column_from_rse.py b/lib/rucio/db/sqla/migrate_repo/versions/d6e2c3b2cf26_remove_third_party_copy_column_from_rse.py index 07251bec9d..9183dee8d4 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/d6e2c3b2cf26_remove_third_party_copy_column_from_rse.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/d6e2c3b2cf26_remove_third_party_copy_column_from_rse.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/d91002c5841_new_account_limits_table.py b/lib/rucio/db/sqla/migrate_repo/versions/d91002c5841_new_account_limits_table.py index 9d5d23e6ca..026686e22b 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/d91002c5841_new_account_limits_table.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/d91002c5841_new_account_limits_table.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/e138c364ebd0_extending_columns_for_filter_and_.py b/lib/rucio/db/sqla/migrate_repo/versions/e138c364ebd0_extending_columns_for_filter_and_.py index 1bf28e255e..7157c74932 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/e138c364ebd0_extending_columns_for_filter_and_.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/e138c364ebd0_extending_columns_for_filter_and_.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/e59300c8b179_support_for_archive.py b/lib/rucio/db/sqla/migrate_repo/versions/e59300c8b179_support_for_archive.py index 1b355073af..b848254b63 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/e59300c8b179_support_for_archive.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/e59300c8b179_support_for_archive.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/f1b14a8c2ac1_postgres_use_check_constraints.py b/lib/rucio/db/sqla/migrate_repo/versions/f1b14a8c2ac1_postgres_use_check_constraints.py index 647804f651..faf2bd31db 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/f1b14a8c2ac1_postgres_use_check_constraints.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/f1b14a8c2ac1_postgres_use_check_constraints.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/f41ffe206f37_oracle_global_temporary_tables.py b/lib/rucio/db/sqla/migrate_repo/versions/f41ffe206f37_oracle_global_temporary_tables.py index 7703b35fb4..96380c25f6 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/f41ffe206f37_oracle_global_temporary_tables.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/f41ffe206f37_oracle_global_temporary_tables.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/f85a2962b021_adding_transfertool_column_to_requests_.py b/lib/rucio/db/sqla/migrate_repo/versions/f85a2962b021_adding_transfertool_column_to_requests_.py index 7cbf3a0ec6..05438d16d4 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/f85a2962b021_adding_transfertool_column_to_requests_.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/f85a2962b021_adding_transfertool_column_to_requests_.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/fa7a7d78b602_increase_refresh_token_size.py b/lib/rucio/db/sqla/migrate_repo/versions/fa7a7d78b602_increase_refresh_token_size.py index 4ed80eb50b..3fd2eb77a1 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/fa7a7d78b602_increase_refresh_token_size.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/fa7a7d78b602_increase_refresh_token_size.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/fb28a95fe288_add_replicas_rse_id_tombstone_idx.py b/lib/rucio/db/sqla/migrate_repo/versions/fb28a95fe288_add_replicas_rse_id_tombstone_idx.py index 1dc130514c..512bddf742 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/fb28a95fe288_add_replicas_rse_id_tombstone_idx.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/fb28a95fe288_add_replicas_rse_id_tombstone_idx.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/fe1a65b176c9_set_third_party_copy_read_and_write_.py b/lib/rucio/db/sqla/migrate_repo/versions/fe1a65b176c9_set_third_party_copy_read_and_write_.py index 47aba2989b..3dbabd9645 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/fe1a65b176c9_set_third_party_copy_read_and_write_.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/fe1a65b176c9_set_third_party_copy_read_and_write_.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/migrate_repo/versions/fe8ea2fa9788_added_third_party_copy_column_to_rse_.py b/lib/rucio/db/sqla/migrate_repo/versions/fe8ea2fa9788_added_third_party_copy_column_to_rse_.py index a3f868643f..a4e1b72628 100644 --- a/lib/rucio/db/sqla/migrate_repo/versions/fe8ea2fa9788_added_third_party_copy_column_to_rse_.py +++ b/lib/rucio/db/sqla/migrate_repo/versions/fe8ea2fa9788_added_third_party_copy_column_to_rse_.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/models.py b/lib/rucio/db/sqla/models.py index a8ac0ac039..c4ac717e42 100644 --- a/lib/rucio/db/sqla/models.py +++ b/lib/rucio/db/sqla/models.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/sautils.py b/lib/rucio/db/sqla/sautils.py index 8af213e074..e0c693e17c 100644 --- a/lib/rucio/db/sqla/sautils.py +++ b/lib/rucio/db/sqla/sautils.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/session.py b/lib/rucio/db/sqla/session.py index 1aefd30c59..88f0c7601c 100644 --- a/lib/rucio/db/sqla/session.py +++ b/lib/rucio/db/sqla/session.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/types.py b/lib/rucio/db/sqla/types.py index 99113f4497..09dacb2e43 100644 --- a/lib/rucio/db/sqla/types.py +++ b/lib/rucio/db/sqla/types.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/db/sqla/util.py b/lib/rucio/db/sqla/util.py index d111dbf451..b4e2e85f78 100644 --- a/lib/rucio/db/sqla/util.py +++ b/lib/rucio/db/sqla/util.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/rse/__init__.py b/lib/rucio/rse/__init__.py index 4de8a6f76c..4a7b6ef572 100644 --- a/lib/rucio/rse/__init__.py +++ b/lib/rucio/rse/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/rse/protocols/__init__.py b/lib/rucio/rse/protocols/__init__.py index 06d1c8adf0..23757cf2d7 100644 --- a/lib/rucio/rse/protocols/__init__.py +++ b/lib/rucio/rse/protocols/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/rse/protocols/bittorrent.py b/lib/rucio/rse/protocols/bittorrent.py index c4ab54a442..418bed4fd1 100644 --- a/lib/rucio/rse/protocols/bittorrent.py +++ b/lib/rucio/rse/protocols/bittorrent.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/rse/protocols/cache.py b/lib/rucio/rse/protocols/cache.py index 2b747ce34c..b82eab24ac 100644 --- a/lib/rucio/rse/protocols/cache.py +++ b/lib/rucio/rse/protocols/cache.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/rse/protocols/dummy.py b/lib/rucio/rse/protocols/dummy.py index 1bdab43352..107ea595dc 100644 --- a/lib/rucio/rse/protocols/dummy.py +++ b/lib/rucio/rse/protocols/dummy.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/rse/protocols/gfal.py b/lib/rucio/rse/protocols/gfal.py index af4e88b423..37908555b9 100644 --- a/lib/rucio/rse/protocols/gfal.py +++ b/lib/rucio/rse/protocols/gfal.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/rse/protocols/globus.py b/lib/rucio/rse/protocols/globus.py index 3305f3bf70..5f98f43c2e 100644 --- a/lib/rucio/rse/protocols/globus.py +++ b/lib/rucio/rse/protocols/globus.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/rse/protocols/gsiftp.py b/lib/rucio/rse/protocols/gsiftp.py index 6e9a692cdf..b0921763b3 100644 --- a/lib/rucio/rse/protocols/gsiftp.py +++ b/lib/rucio/rse/protocols/gsiftp.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/rse/protocols/http_cache.py b/lib/rucio/rse/protocols/http_cache.py index f3866be632..fb1a2f5e8d 100644 --- a/lib/rucio/rse/protocols/http_cache.py +++ b/lib/rucio/rse/protocols/http_cache.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/rse/protocols/mock.py b/lib/rucio/rse/protocols/mock.py index f040d4748b..ddf152a05e 100644 --- a/lib/rucio/rse/protocols/mock.py +++ b/lib/rucio/rse/protocols/mock.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/rse/protocols/ngarc.py b/lib/rucio/rse/protocols/ngarc.py index fbedb31b3a..6c4017c182 100644 --- a/lib/rucio/rse/protocols/ngarc.py +++ b/lib/rucio/rse/protocols/ngarc.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/rse/protocols/posix.py b/lib/rucio/rse/protocols/posix.py index 6b3f9b87a5..9c9ab7a937 100644 --- a/lib/rucio/rse/protocols/posix.py +++ b/lib/rucio/rse/protocols/posix.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/rse/protocols/protocol.py b/lib/rucio/rse/protocols/protocol.py index 0ae446b4a1..2c9ed4c2e5 100644 --- a/lib/rucio/rse/protocols/protocol.py +++ b/lib/rucio/rse/protocols/protocol.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/rse/protocols/rclone.py b/lib/rucio/rse/protocols/rclone.py index 1763651906..9caaa51970 100644 --- a/lib/rucio/rse/protocols/rclone.py +++ b/lib/rucio/rse/protocols/rclone.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/rse/protocols/rfio.py b/lib/rucio/rse/protocols/rfio.py index 6654b2d037..a08cd2bc94 100644 --- a/lib/rucio/rse/protocols/rfio.py +++ b/lib/rucio/rse/protocols/rfio.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/rse/protocols/srm.py b/lib/rucio/rse/protocols/srm.py index 4b9fc59ffd..80751a3451 100644 --- a/lib/rucio/rse/protocols/srm.py +++ b/lib/rucio/rse/protocols/srm.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/rse/protocols/ssh.py b/lib/rucio/rse/protocols/ssh.py index 6e9cc00a54..7ada13c527 100644 --- a/lib/rucio/rse/protocols/ssh.py +++ b/lib/rucio/rse/protocols/ssh.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/rse/protocols/storm.py b/lib/rucio/rse/protocols/storm.py index b0dd6d4fef..0d86bca51a 100644 --- a/lib/rucio/rse/protocols/storm.py +++ b/lib/rucio/rse/protocols/storm.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/rse/protocols/webdav.py b/lib/rucio/rse/protocols/webdav.py index c3ec871372..e9f8b243e2 100644 --- a/lib/rucio/rse/protocols/webdav.py +++ b/lib/rucio/rse/protocols/webdav.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/rse/protocols/xrootd.py b/lib/rucio/rse/protocols/xrootd.py index 702b9faa1b..78630a5c12 100644 --- a/lib/rucio/rse/protocols/xrootd.py +++ b/lib/rucio/rse/protocols/xrootd.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/rse/rsemanager.py b/lib/rucio/rse/rsemanager.py index 715812096d..0ddbdfc82a 100644 --- a/lib/rucio/rse/rsemanager.py +++ b/lib/rucio/rse/rsemanager.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/tests/__init__.py b/lib/rucio/tests/__init__.py index 06d1c8adf0..23757cf2d7 100644 --- a/lib/rucio/tests/__init__.py +++ b/lib/rucio/tests/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/tests/common.py b/lib/rucio/tests/common.py index cbd558d91d..e0b6f93d5a 100644 --- a/lib/rucio/tests/common.py +++ b/lib/rucio/tests/common.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/tests/common_server.py b/lib/rucio/tests/common_server.py index 8a9d281dfb..e1f7ebf502 100644 --- a/lib/rucio/tests/common_server.py +++ b/lib/rucio/tests/common_server.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/transfertool/__init__.py b/lib/rucio/transfertool/__init__.py index 06d1c8adf0..23757cf2d7 100644 --- a/lib/rucio/transfertool/__init__.py +++ b/lib/rucio/transfertool/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/transfertool/bittorrent.py b/lib/rucio/transfertool/bittorrent.py index 70d62ce685..d2bab2b172 100644 --- a/lib/rucio/transfertool/bittorrent.py +++ b/lib/rucio/transfertool/bittorrent.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/transfertool/bittorrent_driver.py b/lib/rucio/transfertool/bittorrent_driver.py index 59324b2e7b..14c80e07ca 100644 --- a/lib/rucio/transfertool/bittorrent_driver.py +++ b/lib/rucio/transfertool/bittorrent_driver.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/transfertool/bittorrent_driver_qbittorrent.py b/lib/rucio/transfertool/bittorrent_driver_qbittorrent.py index b7281e3745..7b6c6da156 100644 --- a/lib/rucio/transfertool/bittorrent_driver_qbittorrent.py +++ b/lib/rucio/transfertool/bittorrent_driver_qbittorrent.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/transfertool/fts3.py b/lib/rucio/transfertool/fts3.py index e0ea29f5a1..0af3e82c3a 100644 --- a/lib/rucio/transfertool/fts3.py +++ b/lib/rucio/transfertool/fts3.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/transfertool/fts3_plugins.py b/lib/rucio/transfertool/fts3_plugins.py index da6bf56e47..8cf1ee4074 100644 --- a/lib/rucio/transfertool/fts3_plugins.py +++ b/lib/rucio/transfertool/fts3_plugins.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/transfertool/globus.py b/lib/rucio/transfertool/globus.py index f32a6c4d45..bed44037cb 100644 --- a/lib/rucio/transfertool/globus.py +++ b/lib/rucio/transfertool/globus.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/transfertool/globus_library.py b/lib/rucio/transfertool/globus_library.py index 4e452a696d..8050658c7d 100644 --- a/lib/rucio/transfertool/globus_library.py +++ b/lib/rucio/transfertool/globus_library.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/transfertool/mock.py b/lib/rucio/transfertool/mock.py index a8997e4de1..7f7c76728e 100644 --- a/lib/rucio/transfertool/mock.py +++ b/lib/rucio/transfertool/mock.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/transfertool/transfertool.py b/lib/rucio/transfertool/transfertool.py index 4ad8e17365..87ebf4e236 100644 --- a/lib/rucio/transfertool/transfertool.py +++ b/lib/rucio/transfertool/transfertool.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/version.py b/lib/rucio/version.py index 76194a1d26..8d6581a9e9 100644 --- a/lib/rucio/version.py +++ b/lib/rucio/version.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/__init__.py b/lib/rucio/web/__init__.py index 06d1c8adf0..23757cf2d7 100644 --- a/lib/rucio/web/__init__.py +++ b/lib/rucio/web/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/rest/__init__.py b/lib/rucio/web/rest/__init__.py index 06d1c8adf0..23757cf2d7 100755 --- a/lib/rucio/web/rest/__init__.py +++ b/lib/rucio/web/rest/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/rest/flaskapi/__init__.py b/lib/rucio/web/rest/flaskapi/__init__.py index 06d1c8adf0..23757cf2d7 100644 --- a/lib/rucio/web/rest/flaskapi/__init__.py +++ b/lib/rucio/web/rest/flaskapi/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/rest/flaskapi/authenticated_bp.py b/lib/rucio/web/rest/flaskapi/authenticated_bp.py index ed41d48460..35648347ab 100644 --- a/lib/rucio/web/rest/flaskapi/authenticated_bp.py +++ b/lib/rucio/web/rest/flaskapi/authenticated_bp.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/rest/flaskapi/v1/__init__.py b/lib/rucio/web/rest/flaskapi/v1/__init__.py index 06d1c8adf0..23757cf2d7 100644 --- a/lib/rucio/web/rest/flaskapi/v1/__init__.py +++ b/lib/rucio/web/rest/flaskapi/v1/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/rest/flaskapi/v1/accountlimits.py b/lib/rucio/web/rest/flaskapi/v1/accountlimits.py index fe7dfda179..413277a3ca 100644 --- a/lib/rucio/web/rest/flaskapi/v1/accountlimits.py +++ b/lib/rucio/web/rest/flaskapi/v1/accountlimits.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/rest/flaskapi/v1/accounts.py b/lib/rucio/web/rest/flaskapi/v1/accounts.py index aa7012e3de..2898768a06 100644 --- a/lib/rucio/web/rest/flaskapi/v1/accounts.py +++ b/lib/rucio/web/rest/flaskapi/v1/accounts.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/rest/flaskapi/v1/archives.py b/lib/rucio/web/rest/flaskapi/v1/archives.py index 39a80a0100..5e7cbea223 100644 --- a/lib/rucio/web/rest/flaskapi/v1/archives.py +++ b/lib/rucio/web/rest/flaskapi/v1/archives.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/rest/flaskapi/v1/auth.py b/lib/rucio/web/rest/flaskapi/v1/auth.py index 753757e743..70677b07a1 100644 --- a/lib/rucio/web/rest/flaskapi/v1/auth.py +++ b/lib/rucio/web/rest/flaskapi/v1/auth.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/rest/flaskapi/v1/common.py b/lib/rucio/web/rest/flaskapi/v1/common.py index bbf47cbb84..ae7409f28b 100644 --- a/lib/rucio/web/rest/flaskapi/v1/common.py +++ b/lib/rucio/web/rest/flaskapi/v1/common.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/rest/flaskapi/v1/config.py b/lib/rucio/web/rest/flaskapi/v1/config.py index 33fd55f9e3..51d3de7a16 100644 --- a/lib/rucio/web/rest/flaskapi/v1/config.py +++ b/lib/rucio/web/rest/flaskapi/v1/config.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/rest/flaskapi/v1/credentials.py b/lib/rucio/web/rest/flaskapi/v1/credentials.py index 51d02c00b4..e93520c34f 100644 --- a/lib/rucio/web/rest/flaskapi/v1/credentials.py +++ b/lib/rucio/web/rest/flaskapi/v1/credentials.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/rest/flaskapi/v1/dids.py b/lib/rucio/web/rest/flaskapi/v1/dids.py index 52ea7dd9cf..7a271bd223 100644 --- a/lib/rucio/web/rest/flaskapi/v1/dids.py +++ b/lib/rucio/web/rest/flaskapi/v1/dids.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/rest/flaskapi/v1/dirac.py b/lib/rucio/web/rest/flaskapi/v1/dirac.py index bde880ffde..708a6aef70 100644 --- a/lib/rucio/web/rest/flaskapi/v1/dirac.py +++ b/lib/rucio/web/rest/flaskapi/v1/dirac.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/rest/flaskapi/v1/export.py b/lib/rucio/web/rest/flaskapi/v1/export.py index d94de60217..717951a16c 100644 --- a/lib/rucio/web/rest/flaskapi/v1/export.py +++ b/lib/rucio/web/rest/flaskapi/v1/export.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/rest/flaskapi/v1/heartbeats.py b/lib/rucio/web/rest/flaskapi/v1/heartbeats.py index 3313f81b4e..74a16b808f 100644 --- a/lib/rucio/web/rest/flaskapi/v1/heartbeats.py +++ b/lib/rucio/web/rest/flaskapi/v1/heartbeats.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/rest/flaskapi/v1/identities.py b/lib/rucio/web/rest/flaskapi/v1/identities.py index d2fb0a7d5f..0c9b13867f 100644 --- a/lib/rucio/web/rest/flaskapi/v1/identities.py +++ b/lib/rucio/web/rest/flaskapi/v1/identities.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/rest/flaskapi/v1/import.py b/lib/rucio/web/rest/flaskapi/v1/import.py index eb372a4fe7..5b6f3c9672 100644 --- a/lib/rucio/web/rest/flaskapi/v1/import.py +++ b/lib/rucio/web/rest/flaskapi/v1/import.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/rest/flaskapi/v1/lifetime_exceptions.py b/lib/rucio/web/rest/flaskapi/v1/lifetime_exceptions.py index 57c33a4e28..a76e7b9366 100644 --- a/lib/rucio/web/rest/flaskapi/v1/lifetime_exceptions.py +++ b/lib/rucio/web/rest/flaskapi/v1/lifetime_exceptions.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/rest/flaskapi/v1/locks.py b/lib/rucio/web/rest/flaskapi/v1/locks.py index b69d65d100..3b00f12f5c 100644 --- a/lib/rucio/web/rest/flaskapi/v1/locks.py +++ b/lib/rucio/web/rest/flaskapi/v1/locks.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/rest/flaskapi/v1/main.py b/lib/rucio/web/rest/flaskapi/v1/main.py index 6caaa85002..1082a4be46 100644 --- a/lib/rucio/web/rest/flaskapi/v1/main.py +++ b/lib/rucio/web/rest/flaskapi/v1/main.py @@ -1,5 +1,4 @@ #!/usr/bin/env python3 -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/rest/flaskapi/v1/meta_conventions.py b/lib/rucio/web/rest/flaskapi/v1/meta_conventions.py index b54867faf9..b2462bfaed 100644 --- a/lib/rucio/web/rest/flaskapi/v1/meta_conventions.py +++ b/lib/rucio/web/rest/flaskapi/v1/meta_conventions.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/rest/flaskapi/v1/metrics.py b/lib/rucio/web/rest/flaskapi/v1/metrics.py index c359814dba..040b784833 100644 --- a/lib/rucio/web/rest/flaskapi/v1/metrics.py +++ b/lib/rucio/web/rest/flaskapi/v1/metrics.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/rest/flaskapi/v1/nongrid_traces.py b/lib/rucio/web/rest/flaskapi/v1/nongrid_traces.py index c58ba67280..329e6545c1 100644 --- a/lib/rucio/web/rest/flaskapi/v1/nongrid_traces.py +++ b/lib/rucio/web/rest/flaskapi/v1/nongrid_traces.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/rest/flaskapi/v1/ping.py b/lib/rucio/web/rest/flaskapi/v1/ping.py index 3d84f07930..bf8e1af400 100644 --- a/lib/rucio/web/rest/flaskapi/v1/ping.py +++ b/lib/rucio/web/rest/flaskapi/v1/ping.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/rest/flaskapi/v1/redirect.py b/lib/rucio/web/rest/flaskapi/v1/redirect.py index f0ccdbe974..987e8dbb6f 100644 --- a/lib/rucio/web/rest/flaskapi/v1/redirect.py +++ b/lib/rucio/web/rest/flaskapi/v1/redirect.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/rest/flaskapi/v1/replicas.py b/lib/rucio/web/rest/flaskapi/v1/replicas.py index 0325877291..146d3db4bf 100644 --- a/lib/rucio/web/rest/flaskapi/v1/replicas.py +++ b/lib/rucio/web/rest/flaskapi/v1/replicas.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/rest/flaskapi/v1/requests.py b/lib/rucio/web/rest/flaskapi/v1/requests.py index 7ee74837a2..bb324d2305 100644 --- a/lib/rucio/web/rest/flaskapi/v1/requests.py +++ b/lib/rucio/web/rest/flaskapi/v1/requests.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/rest/flaskapi/v1/rses.py b/lib/rucio/web/rest/flaskapi/v1/rses.py index 2da77e33ab..1975e66b47 100644 --- a/lib/rucio/web/rest/flaskapi/v1/rses.py +++ b/lib/rucio/web/rest/flaskapi/v1/rses.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/rest/flaskapi/v1/rules.py b/lib/rucio/web/rest/flaskapi/v1/rules.py index 92a1eb4e61..9c0254dd51 100644 --- a/lib/rucio/web/rest/flaskapi/v1/rules.py +++ b/lib/rucio/web/rest/flaskapi/v1/rules.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/rest/flaskapi/v1/scopes.py b/lib/rucio/web/rest/flaskapi/v1/scopes.py index f696c967db..1d17985769 100644 --- a/lib/rucio/web/rest/flaskapi/v1/scopes.py +++ b/lib/rucio/web/rest/flaskapi/v1/scopes.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/rest/flaskapi/v1/subscriptions.py b/lib/rucio/web/rest/flaskapi/v1/subscriptions.py index e9d423d2b8..d9f58c5294 100644 --- a/lib/rucio/web/rest/flaskapi/v1/subscriptions.py +++ b/lib/rucio/web/rest/flaskapi/v1/subscriptions.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/rest/flaskapi/v1/traces.py b/lib/rucio/web/rest/flaskapi/v1/traces.py index e4512eea72..499c27cf7e 100644 --- a/lib/rucio/web/rest/flaskapi/v1/traces.py +++ b/lib/rucio/web/rest/flaskapi/v1/traces.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/rest/flaskapi/v1/vos.py b/lib/rucio/web/rest/flaskapi/v1/vos.py index 717a096abb..d2918e1a93 100644 --- a/lib/rucio/web/rest/flaskapi/v1/vos.py +++ b/lib/rucio/web/rest/flaskapi/v1/vos.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/rest/main.py b/lib/rucio/web/rest/main.py index 3a5d095956..c625a61d75 100644 --- a/lib/rucio/web/rest/main.py +++ b/lib/rucio/web/rest/main.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/rest/metrics.py b/lib/rucio/web/rest/metrics.py index 81e433594b..d3f636d6da 100644 --- a/lib/rucio/web/rest/metrics.py +++ b/lib/rucio/web/rest/metrics.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/rest/ping.py b/lib/rucio/web/rest/ping.py index 85e411a85b..51dcf35808 100644 --- a/lib/rucio/web/rest/ping.py +++ b/lib/rucio/web/rest/ping.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/ui/__init__.py b/lib/rucio/web/ui/__init__.py index 06d1c8adf0..23757cf2d7 100644 --- a/lib/rucio/web/ui/__init__.py +++ b/lib/rucio/web/ui/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/ui/flask/__init__.py b/lib/rucio/web/ui/flask/__init__.py index 06d1c8adf0..23757cf2d7 100644 --- a/lib/rucio/web/ui/flask/__init__.py +++ b/lib/rucio/web/ui/flask/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/ui/flask/bp.py b/lib/rucio/web/ui/flask/bp.py index 2851df56d8..e58a5484e4 100644 --- a/lib/rucio/web/ui/flask/bp.py +++ b/lib/rucio/web/ui/flask/bp.py @@ -1,5 +1,4 @@ #!/usr/bin/env python -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/ui/flask/common/__init__.py b/lib/rucio/web/ui/flask/common/__init__.py index 06d1c8adf0..23757cf2d7 100755 --- a/lib/rucio/web/ui/flask/common/__init__.py +++ b/lib/rucio/web/ui/flask/common/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/ui/flask/common/utils.py b/lib/rucio/web/ui/flask/common/utils.py index f4c58ee256..91eb18ab7e 100644 --- a/lib/rucio/web/ui/flask/common/utils.py +++ b/lib/rucio/web/ui/flask/common/utils.py @@ -1,5 +1,4 @@ #!/usr/bin/env python -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/ui/flask/main.py b/lib/rucio/web/ui/flask/main.py index 3cc6a4c981..4540b2d9d2 100644 --- a/lib/rucio/web/ui/flask/main.py +++ b/lib/rucio/web/ui/flask/main.py @@ -1,5 +1,4 @@ #!/usr/bin/env python -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/rucio/web/ui/main.py b/lib/rucio/web/ui/main.py index 8a3122f030..4bff21a31d 100644 --- a/lib/rucio/web/ui/main.py +++ b/lib/rucio/web/ui/main.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/setup_rucio.py b/setup_rucio.py index 03a9ba1cb5..13c924c6c3 100644 --- a/setup_rucio.py +++ b/setup_rucio.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/setup_rucio_client.py b/setup_rucio_client.py index f287258af2..6d40081a20 100644 --- a/setup_rucio_client.py +++ b/setup_rucio_client.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/setup_webui.py b/setup_webui.py index ad707102d0..d0f5b71fb7 100644 --- a/setup_webui.py +++ b/setup_webui.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/setuputil.py b/setuputil.py index 2647c173fa..1b2e3fcd79 100644 --- a/setuputil.py +++ b/setuputil.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/__init__.py b/tests/__init__.py index 06d1c8adf0..23757cf2d7 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/conftest.py b/tests/conftest.py index 82722923ca..b47feb6e1c 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/inputs/__init__.py b/tests/inputs/__init__.py index 3255951c4e..3da2dc8e5c 100644 --- a/tests/inputs/__init__.py +++ b/tests/inputs/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/lfn2pfn_module_test.py b/tests/lfn2pfn_module_test.py index 32b8121d1e..ec652108e0 100644 --- a/tests/lfn2pfn_module_test.py +++ b/tests/lfn2pfn_module_test.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/mocks/__init__.py b/tests/mocks/__init__.py index 06d1c8adf0..23757cf2d7 100644 --- a/tests/mocks/__init__.py +++ b/tests/mocks/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/mocks/gfal2.py b/tests/mocks/gfal2.py index 81a4160fd7..0026940225 100644 --- a/tests/mocks/gfal2.py +++ b/tests/mocks/gfal2.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/mocks/mock_http_server.py b/tests/mocks/mock_http_server.py index e55dcc7770..4977c928f6 100644 --- a/tests/mocks/mock_http_server.py +++ b/tests/mocks/mock_http_server.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/rsemgr_api_test.py b/tests/rsemgr_api_test.py index 0d39e3d1a3..2276a3272f 100644 --- a/tests/rsemgr_api_test.py +++ b/tests/rsemgr_api_test.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/ruciopytest/__init__.py b/tests/ruciopytest/__init__.py index a617c9918b..dacb4823b6 100644 --- a/tests/ruciopytest/__init__.py +++ b/tests/ruciopytest/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/ruciopytest/artifacts_plugin.py b/tests/ruciopytest/artifacts_plugin.py index 00b4901709..ca6e07b9f6 100644 --- a/tests/ruciopytest/artifacts_plugin.py +++ b/tests/ruciopytest/artifacts_plugin.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/ruciopytest/xdist_noparallel_remote.py b/tests/ruciopytest/xdist_noparallel_remote.py index a389ca311b..e5599b7af0 100644 --- a/tests/ruciopytest/xdist_noparallel_remote.py +++ b/tests/ruciopytest/xdist_noparallel_remote.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/ruciopytest/xdist_noparallel_scheduler.py b/tests/ruciopytest/xdist_noparallel_scheduler.py index 457dffcf08..4ae604cdd9 100644 --- a/tests/ruciopytest/xdist_noparallel_scheduler.py +++ b/tests/ruciopytest/xdist_noparallel_scheduler.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/temp_factories.py b/tests/temp_factories.py index dcb21c4053..1cbdd38eb4 100644 --- a/tests/temp_factories.py +++ b/tests/temp_factories.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_abacus_account.py b/tests/test_abacus_account.py index 4e325981a4..3d2cebcca2 100644 --- a/tests/test_abacus_account.py +++ b/tests/test_abacus_account.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_abacus_collection_replica.py b/tests/test_abacus_collection_replica.py index c48229bf47..7e60984c9a 100644 --- a/tests/test_abacus_collection_replica.py +++ b/tests/test_abacus_collection_replica.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_abacus_rse.py b/tests/test_abacus_rse.py index 1698ed37c2..0836db2730 100644 --- a/tests/test_abacus_rse.py +++ b/tests/test_abacus_rse.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_account.py b/tests/test_account.py index dfc96f838a..86359a953d 100644 --- a/tests/test_account.py +++ b/tests/test_account.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_account_limits.py b/tests/test_account_limits.py index bb374743f2..f73b233ae3 100644 --- a/tests/test_account_limits.py +++ b/tests/test_account_limits.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_api_external_representation.py b/tests/test_api_external_representation.py index b61e1b1b4b..dfdf8a540f 100644 --- a/tests/test_api_external_representation.py +++ b/tests/test_api_external_representation.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_archive.py b/tests/test_archive.py index 9afc2b794b..227931b10e 100644 --- a/tests/test_archive.py +++ b/tests/test_archive.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_auditor.py b/tests/test_auditor.py index efe59a6c81..9c751a5721 100644 --- a/tests/test_auditor.py +++ b/tests/test_auditor.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_auditor_hdfs.py b/tests/test_auditor_hdfs.py index 3d19237c58..fa895f00cd 100644 --- a/tests/test_auditor_hdfs.py +++ b/tests/test_auditor_hdfs.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_auditor_srmdumps.py b/tests/test_auditor_srmdumps.py index d703532723..1e3be3f7b8 100644 --- a/tests/test_auditor_srmdumps.py +++ b/tests/test_auditor_srmdumps.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_authentication.py b/tests/test_authentication.py index bf3c181479..d35a8813c8 100644 --- a/tests/test_authentication.py +++ b/tests/test_authentication.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_automatix.py b/tests/test_automatix.py index 12f6a8d30f..57f0e74241 100644 --- a/tests/test_automatix.py +++ b/tests/test_automatix.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_bad_replica.py b/tests/test_bad_replica.py index cb4044d9fd..06a9bc3260 100644 --- a/tests/test_bad_replica.py +++ b/tests/test_bad_replica.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_bb8.py b/tests/test_bb8.py index acc8557c7d..081435eae3 100644 --- a/tests/test_bb8.py +++ b/tests/test_bb8.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_belleii.py b/tests/test_belleii.py index df8984ed05..41ba7966cd 100644 --- a/tests/test_belleii.py +++ b/tests/test_belleii.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_bin_rucio.py b/tests/test_bin_rucio.py index 350b1fe13b..0b5b707fa4 100755 --- a/tests/test_bin_rucio.py +++ b/tests/test_bin_rucio.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_boolean.py b/tests/test_boolean.py index fb224b6cc1..eea7d74694 100644 --- a/tests/test_boolean.py +++ b/tests/test_boolean.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_clients.py b/tests/test_clients.py index e0a7f3df7d..affa544cea 100644 --- a/tests/test_clients.py +++ b/tests/test_clients.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_common_types.py b/tests/test_common_types.py index 2afaae7869..f8adfb7b5a 100644 --- a/tests/test_common_types.py +++ b/tests/test_common_types.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_config.py b/tests/test_config.py index e4d0a65d67..2b48ce0cf3 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_conveyor.py b/tests/test_conveyor.py index 4429b6369b..cc107239cb 100644 --- a/tests/test_conveyor.py +++ b/tests/test_conveyor.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_conveyor_submitter.py b/tests/test_conveyor_submitter.py index 0b883bfd29..b72f4aaa3a 100644 --- a/tests/test_conveyor_submitter.py +++ b/tests/test_conveyor_submitter.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_counter.py b/tests/test_counter.py index 6388a703a3..0fe8fdd6b1 100644 --- a/tests/test_counter.py +++ b/tests/test_counter.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_credential.py b/tests/test_credential.py index 108c423369..14ac34f467 100644 --- a/tests/test_credential.py +++ b/tests/test_credential.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_curl.py b/tests/test_curl.py index 15b728960a..2d1a1e77e7 100644 --- a/tests/test_curl.py +++ b/tests/test_curl.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_daemons.py b/tests/test_daemons.py index fbea2766ad..56b1d6e5c2 100644 --- a/tests/test_daemons.py +++ b/tests/test_daemons.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_dataset_replicas.py b/tests/test_dataset_replicas.py index 6b975f4b6f..3a4af174d2 100644 --- a/tests/test_dataset_replicas.py +++ b/tests/test_dataset_replicas.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_db.py b/tests/test_db.py index c465b410d8..648fb1d332 100644 --- a/tests/test_db.py +++ b/tests/test_db.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_did.py b/tests/test_did.py index d547cbae5f..307cc0c101 100644 --- a/tests/test_did.py +++ b/tests/test_did.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_did_meta_plugins.py b/tests/test_did_meta_plugins.py index a848a0fd32..9b9f3057f4 100644 --- a/tests/test_did_meta_plugins.py +++ b/tests/test_did_meta_plugins.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_didtype.py b/tests/test_didtype.py index 90388555e0..dfdc8788c7 100644 --- a/tests/test_didtype.py +++ b/tests/test_didtype.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_download.py b/tests/test_download.py index c2ce80363b..378c000fdb 100644 --- a/tests/test_download.py +++ b/tests/test_download.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_dumper.py b/tests/test_dumper.py index 8c00813bb7..94cf3b46f1 100644 --- a/tests/test_dumper.py +++ b/tests/test_dumper.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_dumper_consistency.py b/tests/test_dumper_consistency.py index c12f22913e..5aa238eac7 100644 --- a/tests/test_dumper_consistency.py +++ b/tests/test_dumper_consistency.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_dumper_data_model.py b/tests/test_dumper_data_model.py index 1a029f6022..bad2bab773 100644 --- a/tests/test_dumper_data_model.py +++ b/tests/test_dumper_data_model.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_dumper_path_parsing.py b/tests/test_dumper_path_parsing.py index 9f8c645111..6bbd25a1e3 100644 --- a/tests/test_dumper_path_parsing.py +++ b/tests/test_dumper_path_parsing.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_filter_engine.py b/tests/test_filter_engine.py index 05d76e0226..7ec609a71a 100644 --- a/tests/test_filter_engine.py +++ b/tests/test_filter_engine.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_heartbeat.py b/tests/test_heartbeat.py index 46e47a33c0..e3d2f3e7fe 100644 --- a/tests/test_heartbeat.py +++ b/tests/test_heartbeat.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_hermes.py b/tests/test_hermes.py index 343b5fad04..25ec7e6e87 100644 --- a/tests/test_hermes.py +++ b/tests/test_hermes.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_identity.py b/tests/test_identity.py index 56ea327680..997aa38165 100644 --- a/tests/test_identity.py +++ b/tests/test_identity.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_impl_upload_download.py b/tests/test_impl_upload_download.py index 7044676fb5..31afea25bc 100644 --- a/tests/test_impl_upload_download.py +++ b/tests/test_impl_upload_download.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_import_export.py b/tests/test_import_export.py index 1aac3c8a25..bcad63fd3e 100644 --- a/tests/test_import_export.py +++ b/tests/test_import_export.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_judge_cleaner.py b/tests/test_judge_cleaner.py index 4fe4cb9dbe..4c4a414c44 100644 --- a/tests/test_judge_cleaner.py +++ b/tests/test_judge_cleaner.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_judge_evaluator.py b/tests/test_judge_evaluator.py index 63480689a3..aa9f582ec1 100644 --- a/tests/test_judge_evaluator.py +++ b/tests/test_judge_evaluator.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_judge_injector.py b/tests/test_judge_injector.py index 93b52390f2..636256f612 100644 --- a/tests/test_judge_injector.py +++ b/tests/test_judge_injector.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_judge_repairer.py b/tests/test_judge_repairer.py index 0cc57079bd..25b05a889e 100644 --- a/tests/test_judge_repairer.py +++ b/tests/test_judge_repairer.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_lifetime.py b/tests/test_lifetime.py index d2cbf4f2cc..06e15ccb60 100644 --- a/tests/test_lifetime.py +++ b/tests/test_lifetime.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_message.py b/tests/test_message.py index 32ebd32e4b..a0d701c3bb 100644 --- a/tests/test_message.py +++ b/tests/test_message.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_meta_conventions.py b/tests/test_meta_conventions.py index 9225f2b7ea..b182faf16d 100644 --- a/tests/test_meta_conventions.py +++ b/tests/test_meta_conventions.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_meta_did.py b/tests/test_meta_did.py index 9c0d89a8d7..b106eb2592 100644 --- a/tests/test_meta_did.py +++ b/tests/test_meta_did.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_module_import.py b/tests/test_module_import.py index 46a4b592dc..c78d1d722e 100644 --- a/tests/test_module_import.py +++ b/tests/test_module_import.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_monitor.py b/tests/test_monitor.py index 05afc8a0ad..52738f1055 100644 --- a/tests/test_monitor.py +++ b/tests/test_monitor.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_multi_vo.py b/tests/test_multi_vo.py index c29c76ea9e..bb60ee9231 100644 --- a/tests/test_multi_vo.py +++ b/tests/test_multi_vo.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_naming_convention.py b/tests/test_naming_convention.py index 42bd3ab3f7..54d2ef18d4 100644 --- a/tests/test_naming_convention.py +++ b/tests/test_naming_convention.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_oauthmanager.py b/tests/test_oauthmanager.py index 908c547609..d1ee8c401d 100644 --- a/tests/test_oauthmanager.py +++ b/tests/test_oauthmanager.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_oidc.py b/tests/test_oidc.py index 66ad747877..18a1ff8d37 100644 --- a/tests/test_oidc.py +++ b/tests/test_oidc.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_permission.py b/tests/test_permission.py index b6330a6d58..713322b8cb 100644 --- a/tests/test_permission.py +++ b/tests/test_permission.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_pfns.py b/tests/test_pfns.py index 1328fa39f2..40faf2f446 100644 --- a/tests/test_pfns.py +++ b/tests/test_pfns.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_ping.py b/tests/test_ping.py index 958bdf9719..d93bb92b68 100644 --- a/tests/test_ping.py +++ b/tests/test_ping.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_preparer.py b/tests/test_preparer.py index 206cb9ed6e..db81c3a6d1 100644 --- a/tests/test_preparer.py +++ b/tests/test_preparer.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_qos.py b/tests/test_qos.py index 7f7394c58f..f5f9448fd3 100644 --- a/tests/test_qos.py +++ b/tests/test_qos.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_quarantined_replica.py b/tests/test_quarantined_replica.py index 1c778d63f6..6daeacb8ad 100644 --- a/tests/test_quarantined_replica.py +++ b/tests/test_quarantined_replica.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_reaper.py b/tests/test_reaper.py index 71d9596243..b907de4290 100644 --- a/tests/test_reaper.py +++ b/tests/test_reaper.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_redirect.py b/tests/test_redirect.py index 9df3f82001..18c214d7b5 100644 --- a/tests/test_redirect.py +++ b/tests/test_redirect.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_replica.py b/tests/test_replica.py index b24caa0edf..94e5c1b518 100644 --- a/tests/test_replica.py +++ b/tests/test_replica.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_replica_recoverer.py b/tests/test_replica_recoverer.py index dd22bb29b0..6b9792fdb3 100644 --- a/tests/test_replica_recoverer.py +++ b/tests/test_replica_recoverer.py @@ -1,5 +1,4 @@ #!/usr/bin/env python3 -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_replica_sorting.py b/tests/test_replica_sorting.py index a83f0391e7..cf0bc45940 100644 --- a/tests/test_replica_sorting.py +++ b/tests/test_replica_sorting.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_request.py b/tests/test_request.py index f79864675a..f0294f47a7 100644 --- a/tests/test_request.py +++ b/tests/test_request.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_root_proxy.py b/tests/test_root_proxy.py index 286f417150..7f21b63608 100644 --- a/tests/test_root_proxy.py +++ b/tests/test_root_proxy.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_rse.py b/tests/test_rse.py index 06ef631054..0d7f75552d 100644 --- a/tests/test_rse.py +++ b/tests/test_rse.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_rse_expression_parser.py b/tests/test_rse_expression_parser.py index 4a9950daed..85b3ab1f76 100644 --- a/tests/test_rse_expression_parser.py +++ b/tests/test_rse_expression_parser.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_rse_lfn2path.py b/tests/test_rse_lfn2path.py index 468b5a9866..a3131ef9c5 100644 --- a/tests/test_rse_lfn2path.py +++ b/tests/test_rse_lfn2path.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_rse_protocol_gfal2.py b/tests/test_rse_protocol_gfal2.py index b0e2ff70ad..024e0e8314 100644 --- a/tests/test_rse_protocol_gfal2.py +++ b/tests/test_rse_protocol_gfal2.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_rse_protocol_gfal2_impl.py b/tests/test_rse_protocol_gfal2_impl.py index 6312060468..ee36c7852b 100644 --- a/tests/test_rse_protocol_gfal2_impl.py +++ b/tests/test_rse_protocol_gfal2_impl.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_rse_protocol_posix.py b/tests/test_rse_protocol_posix.py index ad0e2b4c5b..4611d6672c 100644 --- a/tests/test_rse_protocol_posix.py +++ b/tests/test_rse_protocol_posix.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_rse_protocol_rclone.py b/tests/test_rse_protocol_rclone.py index c327a896d4..2f7895f56b 100644 --- a/tests/test_rse_protocol_rclone.py +++ b/tests/test_rse_protocol_rclone.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_rse_protocol_rsync.py b/tests/test_rse_protocol_rsync.py index 20c8cecf04..8af7538f27 100644 --- a/tests/test_rse_protocol_rsync.py +++ b/tests/test_rse_protocol_rsync.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_rse_protocol_srm.py b/tests/test_rse_protocol_srm.py index 5c2555545c..57bff73d26 100644 --- a/tests/test_rse_protocol_srm.py +++ b/tests/test_rse_protocol_srm.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_rse_protocol_ssh.py b/tests/test_rse_protocol_ssh.py index fb57844708..25d6496fc7 100644 --- a/tests/test_rse_protocol_ssh.py +++ b/tests/test_rse_protocol_ssh.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_rse_protocol_webdav.py b/tests/test_rse_protocol_webdav.py index 1c1f077125..bbc09bee04 100644 --- a/tests/test_rse_protocol_webdav.py +++ b/tests/test_rse_protocol_webdav.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_rse_protocol_xrootd.py b/tests/test_rse_protocol_xrootd.py index 505907037f..128e9138c6 100644 --- a/tests/test_rse_protocol_xrootd.py +++ b/tests/test_rse_protocol_xrootd.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_rse_selector.py b/tests/test_rse_selector.py index 5b5b7a3e8d..4b8f65c0d5 100644 --- a/tests/test_rse_selector.py +++ b/tests/test_rse_selector.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_rucio_server.py b/tests/test_rucio_server.py index d4466427fb..49484c4a8e 100644 --- a/tests/test_rucio_server.py +++ b/tests/test_rucio_server.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_rule.py b/tests/test_rule.py index 19a7a85224..bc47cc0bee 100644 --- a/tests/test_rule.py +++ b/tests/test_rule.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_schema_cms.py b/tests/test_schema_cms.py index 21e363c3a5..16915d5642 100644 --- a/tests/test_schema_cms.py +++ b/tests/test_schema_cms.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_scope.py b/tests/test_scope.py index 1a41c77415..4f8cde8179 100644 --- a/tests/test_scope.py +++ b/tests/test_scope.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_subscription.py b/tests/test_subscription.py index 06960803d5..26701da5ce 100644 --- a/tests/test_subscription.py +++ b/tests/test_subscription.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_throttler.py b/tests/test_throttler.py index f159c9183e..437abab06a 100644 --- a/tests/test_throttler.py +++ b/tests/test_throttler.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_tpc.py b/tests/test_tpc.py index a7f5829346..57a85dae21 100644 --- a/tests/test_tpc.py +++ b/tests/test_tpc.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_trace.py b/tests/test_trace.py index 1630481b7f..ee861d2701 100644 --- a/tests/test_trace.py +++ b/tests/test_trace.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_transfer.py b/tests/test_transfer.py index 815c331db4..e0651b05e3 100644 --- a/tests/test_transfer.py +++ b/tests/test_transfer.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_transfer_plugins.py b/tests/test_transfer_plugins.py index 391ad1f410..d62bee6d05 100644 --- a/tests/test_transfer_plugins.py +++ b/tests/test_transfer_plugins.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_undertaker.py b/tests/test_undertaker.py index a14b935853..faa7d79787 100644 --- a/tests/test_undertaker.py +++ b/tests/test_undertaker.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_upload.py b/tests/test_upload.py index e21482b821..731ba3f337 100644 --- a/tests/test_upload.py +++ b/tests/test_upload.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/test_utils.py b/tests/test_utils.py index 43fe64e00b..73c9286266 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tools/add_header b/tools/add_header index 40b07bdfd4..f8abfc7d50 100755 --- a/tools/add_header +++ b/tools/add_header @@ -1,5 +1,4 @@ #!/usr/bin/env python3 -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tools/bootstrap.py b/tools/bootstrap.py index 8dc3943193..59c5dd9c5d 100755 --- a/tools/bootstrap.py +++ b/tools/bootstrap.py @@ -1,5 +1,4 @@ #!/usr/bin/env python -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tools/bootstrap_tests.py b/tools/bootstrap_tests.py index 66e3787b8d..484e8e2462 100755 --- a/tools/bootstrap_tests.py +++ b/tools/bootstrap_tests.py @@ -1,5 +1,4 @@ #!/usr/bin/env python3 -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tools/convert_database_vo.py b/tools/convert_database_vo.py index ecefe71a2f..fa177319d5 100755 --- a/tools/convert_database_vo.py +++ b/tools/convert_database_vo.py @@ -1,5 +1,4 @@ #!/usr/bin/env python -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tools/destroy_database.py b/tools/destroy_database.py index 0ca9342b91..64d14966d0 100755 --- a/tools/destroy_database.py +++ b/tools/destroy_database.py @@ -1,5 +1,4 @@ #!/usr/bin/env python -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tools/generate_doc.py b/tools/generate_doc.py index 42ad49a99f..f590dec7d8 100755 --- a/tools/generate_doc.py +++ b/tools/generate_doc.py @@ -1,5 +1,4 @@ #!/usr/bin/env python3 -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tools/generate_rest_api_doc.py b/tools/generate_rest_api_doc.py index 43df849f0b..965bda521a 100755 --- a/tools/generate_rest_api_doc.py +++ b/tools/generate_rest_api_doc.py @@ -1,5 +1,4 @@ #!/usr/bin/env python3 -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tools/generate_version.py b/tools/generate_version.py index 6808a84967..91ebf500b9 100644 --- a/tools/generate_version.py +++ b/tools/generate_version.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tools/github/workflow/grabrelease.py b/tools/github/workflow/grabrelease.py index fc7d2297e6..a5b5fac299 100755 --- a/tools/github/workflow/grabrelease.py +++ b/tools/github/workflow/grabrelease.py @@ -1,5 +1,4 @@ #!/usr/bin/env python3 -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tools/github/workflow/set_branch_output_env.py b/tools/github/workflow/set_branch_output_env.py index 269f1cd822..7b4b210dea 100755 --- a/tools/github/workflow/set_branch_output_env.py +++ b/tools/github/workflow/set_branch_output_env.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tools/github/workflow/util.py b/tools/github/workflow/util.py index df889e1ea1..6ad5215575 100644 --- a/tools/github/workflow/util.py +++ b/tools/github/workflow/util.py @@ -1,5 +1,4 @@ #!/usr/bin/env python3 -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tools/merge_rucio_configs.py b/tools/merge_rucio_configs.py index 8a98d83333..29a04e5b46 100644 --- a/tools/merge_rucio_configs.py +++ b/tools/merge_rucio_configs.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tools/monitoring/extract.py b/tools/monitoring/extract.py index 0f5009b2db..3de2ad8aaa 100644 --- a/tools/monitoring/extract.py +++ b/tools/monitoring/extract.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tools/reset_database.py b/tools/reset_database.py index 2e03a963dd..15b27c865d 100755 --- a/tools/reset_database.py +++ b/tools/reset_database.py @@ -1,5 +1,4 @@ #!/usr/bin/env python3 -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tools/run_pyright/__init__.py b/tools/run_pyright/__init__.py index 06d1c8adf0..23757cf2d7 100644 --- a/tools/run_pyright/__init__.py +++ b/tools/run_pyright/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tools/run_pyright/__main__.py b/tools/run_pyright/__main__.py index 24735f32e0..93c7486a18 100755 --- a/tools/run_pyright/__main__.py +++ b/tools/run_pyright/__main__.py @@ -1,5 +1,4 @@ #!/usr/bin/env python3 -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tools/run_pyright/compare.py b/tools/run_pyright/compare.py index cc3c8be605..f123138eb1 100644 --- a/tools/run_pyright/compare.py +++ b/tools/run_pyright/compare.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tools/run_pyright/generate.py b/tools/run_pyright/generate.py index b3b9099bbb..e7e8cc4f09 100644 --- a/tools/run_pyright/generate.py +++ b/tools/run_pyright/generate.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tools/run_pyright/models.py b/tools/run_pyright/models.py index 0058ce8367..7f8187c5bf 100644 --- a/tools/run_pyright/models.py +++ b/tools/run_pyright/models.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tools/run_pyright/utils.py b/tools/run_pyright/utils.py index 06a36ec883..b90c6b52fa 100644 --- a/tools/run_pyright/utils.py +++ b/tools/run_pyright/utils.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tools/sync_meta.py b/tools/sync_meta.py index 87051176fe..631b4041d0 100755 --- a/tools/sync_meta.py +++ b/tools/sync_meta.py @@ -1,5 +1,4 @@ #!/usr/bin/env python -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tools/sync_rses.py b/tools/sync_rses.py index 24697788d5..e3508678de 100755 --- a/tools/sync_rses.py +++ b/tools/sync_rses.py @@ -1,5 +1,4 @@ #!/usr/bin/env python -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tools/test/build_images.py b/tools/test/build_images.py index 24d2bbd6fd..c2c1da0bb5 100755 --- a/tools/test/build_images.py +++ b/tools/test/build_images.py @@ -1,5 +1,4 @@ #!/usr/bin/env python3 -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tools/test/donkeyrider.py b/tools/test/donkeyrider.py index 3921626230..4f58eb5c59 100755 --- a/tools/test/donkeyrider.py +++ b/tools/test/donkeyrider.py @@ -1,5 +1,4 @@ #!/usr/bin/env python3 -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tools/test/ignoretool.py b/tools/test/ignoretool.py index 12f808dfdc..0ea7f4ccb9 100755 --- a/tools/test/ignoretool.py +++ b/tools/test/ignoretool.py @@ -1,5 +1,4 @@ #!/usr/bin/env python -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tools/test/matrix_parser.py b/tools/test/matrix_parser.py index 9590c2165e..7b74a5d673 100755 --- a/tools/test/matrix_parser.py +++ b/tools/test/matrix_parser.py @@ -1,5 +1,4 @@ #!/usr/bin/env python3 -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tools/test/run_tests.py b/tools/test/run_tests.py index f57cf7870c..7ad4d2b4a9 100755 --- a/tools/test/run_tests.py +++ b/tools/test/run_tests.py @@ -1,5 +1,4 @@ #!/usr/bin/env python3 -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tools/test/votest_helper.py b/tools/test/votest_helper.py index d79768712c..e93499e096 100755 --- a/tools/test/votest_helper.py +++ b/tools/test/votest_helper.py @@ -1,5 +1,4 @@ #!/usr/bin/env python3 -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tools/update_ui_version.py b/tools/update_ui_version.py index cf26fe7661..21898ae46a 100755 --- a/tools/update_ui_version.py +++ b/tools/update_ui_version.py @@ -1,5 +1,4 @@ #!/usr/bin/env python -# -*- coding: utf-8 -*- # Copyright European Organization for Nuclear Research (CERN) since 2012 # # Licensed under the Apache License, Version 2.0 (the "License");